Added libmpd

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Simon Lundström 2010-09-10 14:57:05 +02:00 committed by Adam Vandenberg
parent 3f129c7f12
commit 8c8364c0c6
1 changed files with 17 additions and 0 deletions

17
Formula/libmpd.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class Libmpd <Formula
url 'http://launchpad.net/gmpc/trunk/0.19.0/+download/libmpd-0.19.0.tar.gz'
homepage 'http://gmpc.wikia.com/wiki/Libmpd'
md5 'a994f5f25a22c778926a3684c3e3050d'
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