2010-12-31 09:00:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mogenerator < Formula
|
2010-12-31 09:00:54 +00:00
|
|
|
homepage 'http://rentzsch.github.com/mogenerator/'
|
2012-11-14 16:14:10 +00:00
|
|
|
url 'https://github.com/rentzsch/mogenerator/tarball/1.27'
|
|
|
|
sha1 '03b04a80d3ff1190736b72bf5ff5ce44d4670914'
|
|
|
|
head 'https://github.com/rentzsch/mogenerator.git'
|
2010-12-31 09:00:54 +00:00
|
|
|
|
2012-08-24 20:40:24 +00:00
|
|
|
depends_on :xcode # For working xcodebuild.
|
|
|
|
|
2010-12-31 09:00:54 +00:00
|
|
|
def install
|
|
|
|
system "xcodebuild -target mogenerator -configuration Release SYMROOT=symroot OBJROOT=objroot"
|
|
|
|
bin.install "symroot/Release/mogenerator"
|
|
|
|
end
|
|
|
|
end
|