7537afb32c
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
296 B
Ruby
13 lines
296 B
Ruby
require 'formula'
|
|
|
|
class Otx <Formula
|
|
head 'http://otx.osxninja.com/builds/trunk/', :using => :svn
|
|
homepage 'http://otx.osxninja.com/'
|
|
|
|
def install
|
|
system 'xcodebuild'
|
|
build = Pathname.getwd + 'build/Release'
|
|
bin.install build+"otx"
|
|
prefix.install build+"otx.app"
|
|
end
|
|
end
|