homebrew-core/Formula/otx.rb
Martin Kühl 7537afb32c New formula: otx
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-15 10:54:15 -07:00

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