e27abe7c96
Also fixes the current issue where mpd will not compile if the ffmpeg formula is installed. see: https://gist.github.com/mxcl/homebrew/issues/6709 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
43 lines
1.2 KiB
Ruby
43 lines
1.2 KiB
Ruby
require 'formula'
|
|
|
|
class Mpd < Formula
|
|
url 'http://downloads.sourceforge.net/project/musicpd/mpd/0.16.3/mpd-0.16.3.tar.bz2'
|
|
homepage 'http://mpd.wikia.com'
|
|
md5 '6e708c02b0e8c288aec855eecf441a5a'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'glib'
|
|
depends_on 'libid3tag'
|
|
depends_on 'flac'
|
|
depends_on 'libshout'
|
|
depends_on 'mad'
|
|
depends_on 'lame'
|
|
depends_on 'faad2' => :optional
|
|
depends_on 'fluid-synth'
|
|
depends_on 'libcue' => :optional
|
|
depends_on 'libmms' => :optional
|
|
depends_on 'libzzip' => :optional
|
|
|
|
def options
|
|
[["--lastfm", "Compile with experimental support for Last.fm radio"]]
|
|
end
|
|
|
|
def install
|
|
# make faad.h findable (when brew is used elsewhere than /usr/local/)
|
|
ENV.append 'CFLAGS', "-I#{HOMEBREW_PREFIX}/include"
|
|
|
|
args = ["--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-bzip2",
|
|
"--enable-flac",
|
|
"--enable-shout",
|
|
"--enable-fluidsynth",
|
|
"--enable-zip",
|
|
"--enable-lame-encoder"]
|
|
args << "--disable-curl" if MacOS.leopard?
|
|
args << "--enable-lastfm" if ARGV.include?("--lastfm")
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|