homebrew-core/Formula/mpd.rb

51 lines
1.5 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-26 15:49:34 +00:00
class Mpd < Formula
homepage 'http://mpd.wikia.com'
url 'http://sourceforge.net/projects/musicpd/files/mpd/0.17.2/mpd-0.17.2.tar.bz2'
sha1 '5e7ccf39f44e51240f181c2e1d9af5a7dafb1f02'
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"
option 'libwrap', 'Enable support of TCP Wrappers (buggy on 10.7)'
2012-08-27 02:34:55 +00:00
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'libid3tag'
depends_on 'ffmpeg'
depends_on 'flac'
2010-02-02 12:22:04 +00:00
depends_on 'libshout'
depends_on 'mad'
depends_on 'lame'
depends_on 'faad2' => :optional
2010-02-02 12:22:04 +00:00
depends_on 'fluid-synth'
depends_on 'libmms' => :optional
depends_on 'libzzip' => :optional
def install
2012-08-27 02:34:55 +00:00
system "./autogen.sh" if build.head?
# 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",
"--enable-ffmpeg",
2010-10-21 05:01:03 +00:00
"--enable-flac",
"--enable-shout",
"--enable-fluidsynth",
"--enable-zzip",
2010-10-21 05:01:03 +00:00
"--enable-lame-encoder"]
args << "--disable-curl" if MacOS.version == :leopard
2012-08-27 02:34:55 +00:00
args << "--enable-lastfm" if build.include?("lastfm")
args << '--disable-libwrap' unless build.include? 'libwrap'
2010-10-21 05:01:03 +00:00
system "./configure", *args
system "make"
ENV.j1 # Directories are created in parallel, so let's not do that
system "make install"
end
end