homebrew-core/Formula/libmpd.rb
Simon Lundström 8c8364c0c6 Added libmpd
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-20 22:07:01 -07:00

17 lines
444 B
Ruby

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