GNU Go formula

GNU Go is a free program that plays the game of Go. GNU Go has played thousands
of games on the NNGS Go server. GNU Go is now also playing regularly on the Legend
Go Server in Taiwan, on the WING server in Japan, and many volunteers run GNU Go
clients on KGS. GNU Go has established itself as the leading non-commercial go program
in the recent tournaments that it has taken part in.
master
David Höppner 2009-09-14 19:32:05 +02:00 committed by Max Howell
parent 77a777e8a2
commit 28a2090041
1 changed files with 12 additions and 0 deletions

12
Formula/gnu-go.rb Normal file
View File

@ -0,0 +1,12 @@
require 'brewkit'
class GnuGo <Formula
@url='http://ftp.gnu.org/gnu/gnugo/gnugo-3.8.tar.gz'
@homepage='http://www.gnu.org/software/gnugo/gnugo.html'
@md5='6db0a528df58876d2b0ef1659c374a9a'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--with-readline=/usr/lib"
system "make install"
end
end