blob: dce188c0d1b1760e564026cdb00b90651bfba4fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 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
  |