homebrew-core/Formula/otx.rb
2011-03-12 11:55:09 -08:00

13 lines
311 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 SYMROOT=build'
build = Pathname.getwd + 'build/Release'
bin.install build+"otx"
prefix.install build+"otx.app"
end
end