2010-03-08 13:26:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Otx < Formula
|
2010-03-08 13:26:49 +00:00
|
|
|
head 'http://otx.osxninja.com/builds/trunk/', :using => :svn
|
|
|
|
homepage 'http://otx.osxninja.com/'
|
|
|
|
|
|
|
|
def install
|
2011-03-03 20:29:10 +00:00
|
|
|
system 'xcodebuild SYMROOT=build'
|
2010-03-08 13:26:49 +00:00
|
|
|
build = Pathname.getwd + 'build/Release'
|
|
|
|
bin.install build+"otx"
|
|
|
|
prefix.install build+"otx.app"
|
|
|
|
end
|
|
|
|
end
|