f87daa12c7
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>
13 lines
342 B
Ruby
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
|