homebrew-core/Formula/chmox.rb
Alexis Hildebrandt f0882a6104 Fix xcodebuild based formulae
Add SYMROOT for xcodebuild in case the Xcode defaults
PBXApplicationwideBuildSettings specify a custom build location

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-05 11:19:34 -08:00

18 lines
419 B
Ruby

require 'formula'
class Chmox <Formula
head 'cvs://:pserver:anonymous@chmox.cvs.sourceforge.net:/cvsroot/chmox:Sources'
homepage 'http://chmox.sourceforge.net'
def install
system "xcodebuild SYMROOT=build"
prefix.install "build/Default/Chmox.app"
end
def caveats; <<-EOS.undent
Chmox.app installed to:
#{prefix}
Use \"brew linkapps\" to symlink into ~/Applications.
EOS
end
end