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>
master
Justin Clift 2010-10-11 17:22:40 +11:00 committed by Adam Vandenberg
parent 27ca79d156
commit f87daa12c7
1 changed files with 3 additions and 1 deletions

View File

@ -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