homebrew-core/Formula/premake.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

29 lines
1.1 KiB
Ruby

class Premake < Formula
desc "Premake is a build script generator"
homepage "http://industriousone.com/premake"
url "https://downloads.sourceforge.net/project/premake/Premake/4.3/premake-4.3-src.zip"
sha256 "36536490f8928d8ecde135da80cd8b751ea5bebe50cabba5c0de49cd41cb2780"
bottle do
cellar :any
sha1 "54ccb106b6abf6c1c76a776cffa82d671ab940a2" => :mavericks
sha1 "960b64d517b1290608acc950058a71f9e984ad79" => :mountain_lion
sha1 "271358004f8cd52160bfd45d9e58a59bc3fcb75d" => :lion
end
devel do
url "https://downloads.sourceforge.net/project/premake/Premake/4.4/premake-4.4-beta5-src.zip"
sha256 "0fa1ed02c5229d931e87995123cdb11d44fcc8bd99bba8e8bb1bbc0aaa798161"
end
def install
unless build.devel?
# Linking against stdc++-static causes a library not found error on 10.7
inreplace "build/gmake.macosx/Premake4.make", "-lstdc++-static ", ""
end
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