homebrew-core/Formula/cdrtools.rb
Justin Clift f87daa12c7 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>
2010-10-13 08:33:18 -07:00

13 lines
342 B
Ruby

require 'formula'
class Cdrtools < Formula
url 'ftp://ftp.berlios.de/pub/cdrecord/cdrtools-3.00.tar.gz'
homepage 'http://cdrecord.berlios.de/private/cdrecord.html'
md5 'bb21cefefcfbb76cf249120e8978ffdd'
depends_on 'smake' => :build
def install
system "smake", "INS_BASE=#{prefix}", "INS_RBASE=#{prefix}", "install"
end
end