diff options
Diffstat (limited to 'Library/Formula/premake.rb')
| -rw-r--r-- | Library/Formula/premake.rb | 19 | 
1 files changed, 13 insertions, 6 deletions
| diff --git a/Library/Formula/premake.rb b/Library/Formula/premake.rb index dce41ce68..b90c88e29 100644 --- a/Library/Formula/premake.rb +++ b/Library/Formula/premake.rb @@ -1,13 +1,20 @@ -require 'formula' +require "formula"  class Premake < Formula -  homepage 'http://industriousone.com/premake' -  url 'https://downloads.sourceforge.net/project/premake/Premake/4.3/premake-4.3-src.zip' -  sha1 '8f37a3599121580f18b578811162b9b49a2e122f' +  homepage "http://industriousone.com/premake" +  url "https://downloads.sourceforge.net/project/premake/Premake/4.3/premake-4.3-src.zip" +  sha1 "8f37a3599121580f18b578811162b9b49a2e122f" + +  devel do +    url "https://downloads.sourceforge.net/project/premake/Premake/4.4/premake-4.4-beta5-src.zip" +    sha1 "02472d4304ed9ff66cde57038c17fbd42a159028" +  end    def install -    # Linking against stdc++-static causes a library not found error on 10.7 -    inreplace 'build/gmake.macosx/Premake4.make', '-lstdc++-static ', '' +    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 | 
