a8135233eb
Fuego is a collection of C++ libraries for Go (igo, weiqi, baduk) game development. It includes a relatively strong(1) GTP-compliant Monte-Carlo Go player. Fuego was initially released by the Computer Go Group at the University of Alberta and is based in part on the previous projects "Smart Game Board" and "Explorer." Fuego is available under the terms of the GNU Lesser General Public License. (1) Fuego won an even (no handicap) 9x9 game against Zhou Junxun 9-Dan (Chou Chun-Hsun) during the Human vs. Computer Program Competition (FUZZ-IEEE 2009). Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
363 B
Ruby
14 lines
363 B
Ruby
require 'formula'
|
|
|
|
class Fuego <Formula
|
|
url 'http://downloads.sourceforge.net/project/fuego/fuego/0.4.1/fuego-0.4.1.tar.gz'
|
|
homepage 'http://fuego.sourceforge.net/'
|
|
md5 'f572114ca5894d9d65728b546e31b7bb'
|
|
|
|
depends_on 'boost'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|