2010-07-20 19:32:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class GoGui < Formula
|
2010-07-20 19:32:23 +00:00
|
|
|
homepage 'http://gogui.sourceforge.net'
|
2012-03-07 00:56:57 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/gogui/gogui/1.4.2/gogui-1.4.2.zip'
|
|
|
|
md5 '0f5e95deff548699c368b71e088bea58'
|
2010-07-20 19:32:23 +00:00
|
|
|
|
|
|
|
def install
|
2012-03-07 00:56:57 +00:00
|
|
|
system "ant", "gogui.app", "-Ddoc-uptodate=true"
|
|
|
|
prefix.install 'build/GoGui.app'
|
2010-07-20 19:32:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
GoGui.app installed to:
|
|
|
|
#{prefix}
|
|
|
|
Use \"brew linkapps\" to symlink into ~/Applications.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|