blob: e5ddfd0a31b778bf00b0fcb7d1f92861fe3b4bbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Otx < Formula
homepage 'http://otx.osxninja.com/'
head 'http://otx.osxninja.com/builds/trunk/', :using => :svn
def install
system 'xcodebuild SYMROOT=build'
build = buildpath/'build/Release'
bin.install build+"otx"
prefix.install build+"otx.app"
end
end
|