020c5cd9c3
CHEOPS (CHEss OPponent Simulator) is a fully-functional chess program capable of human-vs-human, human-vs-computer, and computer-vs-computer play. It uses a 64-square linear array board representation. The game tree search is alpha–beta, and the static evaluation function considers material, mobility, and motif features.
12 lines
378 B
Ruby
12 lines
378 B
Ruby
require 'formula'
|
|
|
|
class Cheops <Formula
|
|
url 'http://files.nothingisreal.com/software/cheops/cheops-1.1.tar.bz2'
|
|
homepage 'http://en.nothingisreal.com/wiki/CHEOPS'
|
|
md5 'ced2dba9d0d6de77d538e04ff2909969'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|