require 'formula' class Mpd :optional depends_on 'faad2' => :optional depends_on 'fluid-synth' depends_on 'libcue' => :optional depends_on 'libmms' => :optional depends_on 'libzzip' => :optional 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", ] configure_args << "--disable-curl" if MACOS_VERSION <= 10.5 system "./configure", *configure_args system "make install" end end