aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/premake.rb
blob: 979ad1a9be5b84b6e0c0920fc87c8821321a475c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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