2010-12-31 09:00:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mogenerator < Formula
|
2012-04-13 04:03:49 +00:00
|
|
|
url 'https://github.com/rentzsch/mogenerator/tarball/1.26'
|
2010-12-31 09:00:54 +00:00
|
|
|
homepage 'http://rentzsch.github.com/mogenerator/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '0ac8ad310760df366bdeeb32f9420548f3168ca4'
|
2011-05-27 05:02:55 +00:00
|
|
|
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
|