From 27ca79d15656285fc07a5e9bf716d5c00333ad8a Mon Sep 17 00:00:00 2001 From: Justin Clift Date: Mon, 11 Oct 2010 17:21:04 +1100 Subject: [PATCH] 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 --- Formula/smake.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Formula/smake.rb diff --git a/Formula/smake.rb b/Formula/smake.rb new file mode 100644 index 00000000000..e85222680e0 --- /dev/null +++ b/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