2010-01-07 16:23:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-26 15:49:34 +00:00
|
|
|
class Mpd < Formula
|
2010-01-07 16:23:10 +00:00
|
|
|
homepage 'http://mpd.wikia.com'
|
2013-01-16 18:30:38 +00:00
|
|
|
url 'http://sourceforge.net/projects/musicpd/files/mpd/0.17.3/mpd-0.17.3.tar.bz2'
|
|
|
|
sha1 'f684d73a7517371a4461afdb2439f9533b51a49d'
|
2010-01-07 16:23:10 +00:00
|
|
|
|
2012-03-21 09:07:28 +00:00
|
|
|
head "git://git.musicpd.org/master/mpd.git"
|
|
|
|
|
2012-08-27 02:34:55 +00:00
|
|
|
option "lastfm", "Compile with experimental support for Last.fm radio"
|
2012-09-13 05:39:38 +00:00
|
|
|
option 'libwrap', 'Enable support of TCP Wrappers (buggy on 10.7)'
|
2012-08-27 02:34:55 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-01-07 16:23:10 +00:00
|
|
|
depends_on 'glib'
|
|
|
|
depends_on 'libid3tag'
|
2012-10-31 23:06:01 +00:00
|
|
|
depends_on 'ffmpeg'
|
2010-01-07 16:23:10 +00:00
|
|
|
depends_on 'flac'
|
2010-02-02 12:22:04 +00:00
|
|
|
depends_on 'libshout'
|
2010-07-25 19:09:35 +00:00
|
|
|
depends_on 'mad'
|
|
|
|
depends_on 'lame'
|
2010-03-28 16:02:38 +00:00
|
|
|
depends_on 'faad2' => :optional
|
2010-02-02 12:22:04 +00:00
|
|
|
depends_on 'fluid-synth'
|
|
|
|
depends_on 'libmms' => :optional
|
|
|
|
depends_on 'libzzip' => :optional
|
2010-01-07 16:23:10 +00:00
|
|
|
|
|
|
|
def install
|
2012-08-27 02:34:55 +00:00
|
|
|
system "./autogen.sh" if build.head?
|
2012-03-21 09:07:28 +00:00
|
|
|
|
2010-03-28 16:02:38 +00:00
|
|
|
# make faad.h findable (when brew is used elsewhere than /usr/local/)
|
|
|
|
ENV.append 'CFLAGS', "-I#{HOMEBREW_PREFIX}/include"
|
|
|
|
|
2010-10-21 05:01:03 +00:00
|
|
|
args = ["--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-bzip2",
|
2012-10-31 23:06:01 +00:00
|
|
|
"--enable-ffmpeg",
|
2010-10-21 05:01:03 +00:00
|
|
|
"--enable-flac",
|
|
|
|
"--enable-shout",
|
|
|
|
"--enable-fluidsynth",
|
2012-09-17 20:21:27 +00:00
|
|
|
"--enable-zzip",
|
2010-10-21 05:01:03 +00:00
|
|
|
"--enable-lame-encoder"]
|
2012-09-05 04:04:01 +00:00
|
|
|
args << "--disable-curl" if MacOS.version == :leopard
|
2012-08-27 02:34:55 +00:00
|
|
|
args << "--enable-lastfm" if build.include?("lastfm")
|
2012-09-13 05:39:38 +00:00
|
|
|
args << '--disable-libwrap' unless build.include? 'libwrap'
|
2010-01-31 14:38:52 +00:00
|
|
|
|
2010-10-21 05:01:03 +00:00
|
|
|
system "./configure", *args
|
2012-09-17 20:21:27 +00:00
|
|
|
system "make"
|
|
|
|
ENV.j1 # Directories are created in parallel, so let's not do that
|
2010-01-07 16:23:10 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|