blob: 91513f1b3df1ab1238b05bd6d8406c8b566488ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Mogenerator < Formula
homepage 'http://rentzsch.github.io/mogenerator/'
url 'https://github.com/rentzsch/mogenerator/archive/1.27.tar.gz'
sha1 'd9defaa6352624cacbe8640aa82af8e14de74848'
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
|