blob: ad20ee2da9283d51a787cfa56a6423c844043844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
  |