diff options
| author | m0rk | 2010-03-28 18:02:38 +0200 |
|---|---|---|
| committer | David Höppner | 2010-03-29 12:22:34 +0200 |
| commit | abe22999129263329a8ecfa87c7aabe4032ae332 (patch) | |
| tree | 23590dc2a3a83939429fc21baabb3e66f5bc93ee /Library | |
| parent | 0c53d2746e4eacb9fff95a3956e725f071edf42d (diff) | |
| download | homebrew-abe22999129263329a8ecfa87c7aabe4032ae332.tar.bz2 | |
updated mpd to 0.15.9
* added aac support (faad2)
* added mp3 support (libmad)
* fixed aac support outside of /usr/local/
Signed-off-by: David Höppner <0xffea@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/mpd.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Formula/mpd.rb b/Library/Formula/mpd.rb index ee50616aa..5d286907f 100644 --- a/Library/Formula/mpd.rb +++ b/Library/Formula/mpd.rb @@ -1,21 +1,26 @@ require 'formula' class Mpd <Formula - url 'http://downloads.sourceforge.net/project/musicpd/mpd/0.15.8/mpd-0.15.8.tar.bz2' + url 'http://downloads.sourceforge.net/project/musicpd/mpd/0.15.9/mpd-0.15.9.tar.bz2' homepage 'http://mpd.wikia.com' - md5 '824e1ce46c0f468865d9e5e403cdaf5d' + md5 '88f7bc0b17eac81d03b24929d12b8aa1' depends_on 'glib' depends_on 'libid3tag' depends_on 'pkg-config' depends_on 'flac' depends_on 'libshout' + depends_on 'mad' => :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", |
