aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libshout.rb
diff options
context:
space:
mode:
authorJack Nagel2013-03-28 15:12:36 -0500
committerJack Nagel2013-03-28 15:14:36 -0500
commitfba8597c034efabcd003203abe7d6358f7ec43a0 (patch)
treefc231f085c60b8c3c79666d34a999df23c3527fc /Library/Formula/libshout.rb
parentf12c65becbcabe6c140afba8dc1346eab008c2e1 (diff)
downloadhomebrew-fba8597c034efabcd003203abe7d6358f7ec43a0.tar.bz2
mpd: fix a number of build issues
- When yajl is installed, the build system manages to find it even under superenv, so explicitly disable this option unless requested - Future-proof finding faad2 in non-/usr/local installs - Fix libshout deps
Diffstat (limited to 'Library/Formula/libshout.rb')
-rw-r--r--Library/Formula/libshout.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/Library/Formula/libshout.rb b/Library/Formula/libshout.rb
index e0d41b2ce..0ccd7d87f 100644
--- a/Library/Formula/libshout.rb
+++ b/Library/Formula/libshout.rb
@@ -8,13 +8,11 @@ class Libshout < Formula
depends_on 'pkg-config' => :build
depends_on 'libogg'
depends_on 'libvorbis'
-
- depends_on 'theora' => :optional
- depends_on 'speex' => :optional
+ depends_on 'theora'
+ depends_on 'speex'
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end