blob: 099a73e419f6d39d315094b5fa24f46f4cbbc1c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class GnuGo < Formula
url 'http://ftpmirror.gnu.org/gnugo/gnugo-3.8.tar.gz'
mirror '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", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-readline=/usr/lib"
system "make install"
end
end
|