New formula: smake

Smake is required for modern cdrools to build binaries on MacOS X.

With smake, cdrtools only builds headers, which is not real useful.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Justin Clift 2010-10-11 17:21:04 +11:00 committed by Adam Vandenberg
parent 8147b3edf3
commit 27ca79d156
1 changed files with 11 additions and 0 deletions

11
Formula/smake.rb Normal file
View File

@ -0,0 +1,11 @@
require 'formula'
class Smake < Formula
url 'ftp://ftp.berlios.de/pub/smake/alpha/smake-1.2a49.tar.bz2'
homepage 'http://cdrecord.berlios.de/private/smake.html'
md5 '1c1e5b7a2b718aca772305a84359ba7e'
def install
system "make", "GMAKE_NOWARN=true", "INS_BASE=#{prefix}", "INS_RBASE=#{prefix}", "MANDIR=share/man", "install"
end
end