2010-03-08 13:26:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Otx < Formula
|
2010-03-08 13:26:49 +00:00
|
|
|
homepage 'http://otx.osxninja.com/'
|
2012-05-10 14:10:12 +00:00
|
|
|
head 'http://otx.osxninja.com/builds/trunk/', :using => :svn
|
2010-03-08 13:26:49 +00:00
|
|
|
|
2012-08-24 20:40:24 +00:00
|
|
|
depends_on :xcode # For working xcodebuild.
|
|
|
|
|
2010-03-08 13:26:49 +00:00
|
|
|
def install
|
2012-11-05 19:19:20 +00:00
|
|
|
inreplace 'otx.xcodeproj/project.pbxproj' do |s|
|
|
|
|
s.gsub! "MacOSX10.6.sdk", "MacOSX#{MacOS.version}.sdk"
|
|
|
|
end
|
|
|
|
|
2011-03-03 20:29:10 +00:00
|
|
|
system 'xcodebuild SYMROOT=build'
|
2012-05-08 05:32:26 +00:00
|
|
|
build = buildpath/'build/Release'
|
2012-11-11 19:20:09 +00:00
|
|
|
bin.install build/"otx"
|
|
|
|
prefix.install build/"otx.app"
|
2010-03-08 13:26:49 +00:00
|
|
|
end
|
|
|
|
end
|