blob: 73dd73e5b612c0136d614adb0142dab12437731c (
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.3/premake-4.3-src.zip'
md5 '8cfafee76f9665c93b2e9ad15b015eb7'
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
|