Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jonathan Boyett 2011-02-28 13:46:52 -08:00 committed by Adam Vandenberg
parent e674a05119
commit 5900c994d0
1 changed files with 17 additions and 0 deletions

17
Formula/pms.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class Pms < Formula
url 'https://downloads.sourceforge.net/project/pms/pms/0.42/pms-0.42.tar.bz2'
homepage 'http://pms.sourceforge.net'
md5 '8ebd65c5e6e33cd0ca79817a5e823805'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'glib'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end