aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJustin Clift2010-10-11 17:21:04 +1100
committerAdam Vandenberg2010-10-13 08:32:06 -0700
commitc85d0b2264ac1c4bc938c554660b79c6f3c0526b (patch)
tree6847eb01f679a45c4ebe8c00939187bd88390876 /Library/Formula
parent31c11d0efbd35fac5398c82b5c7da374cdb9235c (diff)
downloadhomebrew-c85d0b2264ac1c4bc938c554660b79c6f3c0526b.tar.bz2
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>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/smake.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Formula/smake.rb b/Library/Formula/smake.rb
new file mode 100644
index 000000000..e85222680
--- /dev/null
+++ b/Library/Formula/smake.rb
@@ -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