aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kühl2010-03-08 14:26:49 +0100
committerAdam Vandenberg2010-06-15 10:54:15 -0700
commite736a3d5b8e06478e98f2d97ce8e1847539844cf (patch)
tree606d3d2d37dd3e7311b16f2387f4303461fe28df
parent0e2d66bbd1bd0388fb297b4c31b3d57ecb9cc7b4 (diff)
downloadhomebrew-e736a3d5b8e06478e98f2d97ce8e1847539844cf.tar.bz2
New formula: otx
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-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