aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2009-09-14 19:32:05 +0200
committerMax Howell2009-09-14 20:33:47 +0100
commit510f300c0e871bed2393db43b584b5d03cfd7b55 (patch)
tree6339ac9046a46617148b8e7bee6c4c1794cb5f2c /Library/Formula
parentd11a9308899c5549a865d5315eec5b029c916cb4 (diff)
downloadhomebrew-510f300c0e871bed2393db43b584b5d03cfd7b55.tar.bz2
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.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gnu-go.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/gnu-go.rb b/Library/Formula/gnu-go.rb
new file mode 100644
index 000000000..af7c2885e
--- /dev/null
+++ b/Library/Formula/gnu-go.rb
@@ -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