aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/premake.rb
diff options
context:
space:
mode:
authorAsh Berlin2009-11-30 14:01:59 +0000
committerAsh Berlin2009-12-04 18:03:02 +0000
commiteb62b316838644876cdd9375deeb87818031db68 (patch)
tree0f6acefd8a9c62185bf687f27a5b4a90bb833c33 /Library/Formula/premake.rb
parent3c9bf691dbbac5649c98942e7299b58dfa986316 (diff)
downloadhomebrew-eb62b316838644876cdd9375deeb87818031db68.tar.bz2
premake 4.1.2
A minimalisitc autoconf/cmake like tool that uses lua for its input files.
Diffstat (limited to 'Library/Formula/premake.rb')
-rw-r--r--Library/Formula/premake.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/premake.rb b/Library/Formula/premake.rb
new file mode 100644
index 000000000..b123c4072
--- /dev/null
+++ b/Library/Formula/premake.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Premake <Formula
+ url 'http://downloads.sourceforge.net/project/premake/Premake/4.1.2/premake-4.1.2-src.zip'
+ md5 'de11ee2ba611ffe6e00ba190e35d2c41'
+ homepage 'http://industriousone.com/premake'
+
+ def install
+ system "make -C build/gmake.macosx"
+
+ # Premake has no install target, but its just a single file that is needed
+ bin.install "bin/release/premake4"
+ end
+end