aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cheops.rb
diff options
context:
space:
mode:
authorDavid Höppner2010-04-06 11:38:08 +0200
committerDavid Höppner2010-04-06 11:38:08 +0200
commit3677e964b0455a36c690af81d71edcbc314bfc57 (patch)
tree3f4513193f84b36d633a9721bbb0d06f41751d16 /Library/Formula/cheops.rb
parentfafdb1cd38e71dafa54cb31f26304bee1cbfb3dc (diff)
downloadhomebrew-3677e964b0455a36c690af81d71edcbc314bfc57.tar.bz2
New formula cheops
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.
Diffstat (limited to 'Library/Formula/cheops.rb')
-rw-r--r--Library/Formula/cheops.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/cheops.rb b/Library/Formula/cheops.rb
new file mode 100644
index 000000000..89896bbf0
--- /dev/null
+++ b/Library/Formula/cheops.rb
@@ -0,0 +1,12 @@
+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