aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJustin Clift2010-10-11 17:22:40 +1100
committerAdam Vandenberg2010-10-13 08:33:18 -0700
commit3f05b417c60b6a77be032e1eb529db4bfb1d86b3 (patch)
treec6277f7a07d2d064ed1ad5937f6aba14b89fce4b /Library
parentc85d0b2264ac1c4bc938c554660b79c6f3c0526b (diff)
downloadhomebrew-3f05b417c60b6a77be032e1eb529db4bfb1d86b3.tar.bz2
Updated formula: cdrtools
Updated cdrtools to depend upon, and use, smake instead of GNU make. This allows the cdrtools binaries (mkisofs, etc) to compile and be installed. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/cdrtools.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/cdrtools.rb b/Library/Formula/cdrtools.rb
index 2f7365163..b2122f42c 100644
--- a/Library/Formula/cdrtools.rb
+++ b/Library/Formula/cdrtools.rb
@@ -5,7 +5,9 @@ class Cdrtools < Formula
homepage 'http://cdrecord.berlios.de/private/cdrecord.html'
md5 'bb21cefefcfbb76cf249120e8978ffdd'
+ depends_on 'smake' => :build
+
def install
- system "make", "GMAKE_NOWARN=true", "INS_BASE=#{prefix}", "INS_RBASE=#{prefix}", "install"
+ system "smake", "INS_BASE=#{prefix}", "INS_RBASE=#{prefix}", "install"
end
end