2009-11-30 14:01:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Premake < Formula
|
2011-06-04 05:20:08 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/premake/Premake/4.3/premake-4.3-src.zip'
|
|
|
|
md5 '8cfafee76f9665c93b2e9ad15b015eb7'
|
2009-11-30 14:01:59 +00:00
|
|
|
homepage 'http://industriousone.com/premake'
|
|
|
|
|
|
|
|
def install
|
2011-06-09 19:52:21 +00:00
|
|
|
# Linking against stdc++-static causes a library not found error on 10.7
|
|
|
|
inreplace 'build/gmake.macosx/Premake4.make', '-lstdc++-static ', ''
|
2009-11-30 14:01:59 +00:00
|
|
|
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
|