diff options
| -rw-r--r-- | Library/Formula/chmox.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/chmox.rb b/Library/Formula/chmox.rb new file mode 100644 index 000000000..b15a34f8c --- /dev/null +++ b/Library/Formula/chmox.rb @@ -0,0 +1,18 @@ +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" + 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 |
