blob: 97d6aa006e10bd0f3339c8cf662598570b2b86fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Mogenerator < Formula
url 'https://github.com/rentzsch/mogenerator/tarball/1.26'
homepage 'http://rentzsch.github.com/mogenerator/'
sha1 '0ac8ad310760df366bdeeb32f9420548f3168ca4'
head "https://github.com/rentzsch/mogenerator.git"
depends_on :xcode # For working xcodebuild.
def install
system "xcodebuild -target mogenerator -configuration Release SYMROOT=symroot OBJROOT=objroot"
bin.install "symroot/Release/mogenerator"
end
end
|