7da45a0a6c
GoGui is a graphical user interface to programs that play the board game Go and support the Go Text Protocol, such as GNU Go. GoGui has many special features for Go program developers: It allows direct communication with a Go engine over a command shell. The Go engine can be replaced while keeping the current board position. Commands can be configured to display their responses graphically on the board. GoGui is avaliable under the terms of the GNU General Public License. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
463 B
Ruby
20 lines
463 B
Ruby
require 'formula'
|
|
|
|
class GoGui <Formula
|
|
url 'http://downloads.sourceforge.net/project/gogui/gogui/1.2.2/gogui-1.2.2.zip'
|
|
homepage 'http://gogui.sourceforge.net'
|
|
md5 'a222d7f5f654341dc55016fd4c1d512f'
|
|
|
|
def install
|
|
system "ant"
|
|
system "ant", "gogui.app"
|
|
prefix.install ['build/GoGui.app']
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
GoGui.app installed to:
|
|
#{prefix}
|
|
Use \"brew linkapps\" to symlink into ~/Applications.
|
|
EOS
|
|
end
|
|
end
|