aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/otx.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/otx.rb')
-rw-r--r--Library/Formula/otx.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/otx.rb b/Library/Formula/otx.rb
new file mode 100644
index 000000000..ad20ee2da
--- /dev/null
+++ b/Library/Formula/otx.rb
@@ -0,0 +1,13 @@
+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