diff options
| author | Ross Heflin | 2012-09-17 15:21:27 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-18 20:25:56 -0700 |
| commit | 2ddb7e940d983bc05e0a71296b9d083a4f7fa89c (patch) | |
| tree | c5c115e226fd23c50cfdfe87c9cd1dc9d26532d4 /Library/Formula | |
| parent | c26e7557dd61441eec580d0d017c28320c9b7ce6 (diff) | |
| download | homebrew-2ddb7e940d983bc05e0a71296b9d083a4f7fa89c.tar.bz2 | |
mpd 0.17.1
Closes #14992.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mpd.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Formula/mpd.rb b/Library/Formula/mpd.rb index f08bb3787..edecd51ee 100644 --- a/Library/Formula/mpd.rb +++ b/Library/Formula/mpd.rb @@ -2,8 +2,8 @@ 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' + url 'http://sourceforge.net/projects/musicpd/files/mpd/0.17.1/mpd-0.17.1.tar.bz2' + sha1 '11da36217d57d08010f309977a4a77cce6240f77' head "git://git.musicpd.org/master/mpd.git" @@ -19,7 +19,6 @@ class Mpd < Formula depends_on 'lame' depends_on 'faad2' => :optional depends_on 'fluid-synth' - depends_on 'libcue' => :optional depends_on 'libmms' => :optional depends_on 'libzzip' => :optional @@ -35,13 +34,15 @@ class Mpd < Formula "--enable-flac", "--enable-shout", "--enable-fluidsynth", - "--enable-zip", + "--enable-zzip", "--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" + ENV.j1 # Directories are created in parallel, so let's not do that system "make install" end end |
