homebrew-core/Formula/mpd.rb

44 lines
1.2 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-26 15:49:34 +00:00
class Mpd < Formula
url 'http://sourceforge.net/projects/musicpd/files/mpd/0.16.7/mpd-0.16.7.tar.bz2'
homepage 'http://mpd.wikia.com'
sha1 '878f3ce82d4f00f6cbad63a625b2c0274c4a704a'
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'libid3tag'
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 '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"
2010-10-21 05:01:03 +00:00
args = ["--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-bzip2",
"--enable-flac",
"--enable-shout",
"--enable-fluidsynth",
"--enable-zip",
"--enable-lame-encoder"]
2011-04-08 18:16:37 +00:00
args << "--disable-curl" if MacOS.leopard?
2010-10-21 05:01:03 +00:00
args << "--enable-lastfm" if ARGV.include?("--lastfm")
2010-10-21 05:01:03 +00:00
system "./configure", *args
system "make install"
end
end