blob: b2a73d1fd3cd8959515e1f76950a08e05e957276 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Chmox < Formula
head 'cvs://:pserver:anonymous@chmox.cvs.sourceforge.net:/cvsroot/chmox:Sources'
homepage 'http://chmox.sourceforge.net'
depends_on :xcode # For working xcodebuild.
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
|