homebrew-core/Formula/mpd.rb
nibbles 2bits 5224e2ee3e mpd: disable libwarp by default
- Disable libwrap by default.
- Add an option to enable it.
- Fixes a build error where a 10.7 lib was found on 10.8.

Fixes Homebrew/homebrew#14787

Closes Homebrew/homebrew#14902.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-13 06:56:49 -07:00

47 lines
1.4 KiB
Ruby

require 'formula'
class Mpd < Formula
homepage 'http://mpd.wikia.com'
url 'http://sourceforge.net/projects/musicpd/files/mpd/0.17/mpd-0.17.tar.bz2'
sha1 '36201f32ca5729b62b0e6cbddb19ade20ee3f7d7'
head "git://git.musicpd.org/master/mpd.git"
option "lastfm", "Compile with experimental support for Last.fm radio"
option 'libwrap', 'Enable support of TCP Wrappers (buggy on 10.7)'
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 install
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"
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.version == :leopard
args << "--enable-lastfm" if build.include?("lastfm")
args << '--disable-libwrap' unless build.include? 'libwrap'
system "./configure", *args
system "make install"
end
end