2010-01-07 16:23:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mpd <Formula
|
2010-01-31 14:38:52 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/musicpd/mpd/0.15.8/mpd-0.15.8.tar.bz2'
|
2010-01-07 16:23:10 +00:00
|
|
|
homepage 'http://mpd.wikia.com'
|
2010-01-31 14:38:52 +00:00
|
|
|
md5 '824e1ce46c0f468865d9e5e403cdaf5d'
|
2010-01-07 16:23:10 +00:00
|
|
|
|
|
|
|
depends_on 'glib'
|
|
|
|
depends_on 'libid3tag'
|
|
|
|
depends_on 'pkg-config'
|
|
|
|
depends_on 'flac'
|
|
|
|
|
|
|
|
def install
|
2010-01-31 14:38:52 +00:00
|
|
|
configure_args = [
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--enable-flac",
|
|
|
|
]
|
|
|
|
configure_args << "--disable-curl" if MACOS_VERSION <= 10.5
|
|
|
|
|
|
|
|
system "./configure", *configure_args
|
2010-01-07 16:23:10 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|