aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/normalize.rb
diff options
context:
space:
mode:
authorJack Nagel2013-02-02 16:31:14 -0600
committerJack Nagel2013-02-02 16:31:14 -0600
commit17b7914586802cb6c85b7c1d24c0f658c7ae5010 (patch)
treebb09880b78ed784d078fa419cf0307559a01fad9 /Library/Formula/normalize.rb
parent3ec12feb3c3ba06c50edc81399e1a7c050ac4dd3 (diff)
downloadhomebrew-17b7914586802cb6c85b7c1d24c0f658c7ae5010.tar.bz2
normalize: use recommended dep
Diffstat (limited to 'Library/Formula/normalize.rb')
-rw-r--r--Library/Formula/normalize.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/normalize.rb b/Library/Formula/normalize.rb
index 57132de15..f2e29a81b 100644
--- a/Library/Formula/normalize.rb
+++ b/Library/Formula/normalize.rb
@@ -7,7 +7,7 @@ class Normalize < Formula
option 'without-mad', 'Compile without MP3 support'
- depends_on 'mad' unless build.include? 'without-mad'
+ depends_on 'mad' => :recommended
def install
args = %W[
@@ -16,7 +16,7 @@ class Normalize < Formula
--prefix=#{prefix}
--mandir=#{man}
]
- args << "--without-mad" if build.include? "without-mad"
+ args << "--without-mad" if build.without? "mad"
system "./configure", *args
system "make install"