require 'formula' class Mpd :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" configure_args = [ "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--enable-bzip2", "--enable-flac", "--enable-shout", "--enable-fluidsynth", "--enable-zip", "--enable-lame-encoder", ] configure_args << "--disable-curl" if MACOS_VERSION <= 10.5 configure_args << "--enable-lastfm" if ARGV.include?("--lastfm") system "./configure", *configure_args system "make install" end end