premake 4.1.2

A minimalisitc autoconf/cmake like tool that uses lua for its input files.
master
Ash Berlin 2009-11-30 14:01:59 +00:00
parent 2fda8fe5b1
commit e6a5f79b68
1 changed files with 14 additions and 0 deletions

14
Formula/premake.rb Normal file
View File

@ -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