18 lines
420 B
Ruby
18 lines
420 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
|