pgchess 0.1.0

This Release
pgchess 0.1.0
Date
Status
Stable
Latest Stable
pgchess 0.1.7 —
Other Releases
Abstract
A Chess extension
Description
This extension provides tools to play Chess. Includes an AI player.
Released By
gciolli
License
GPL 3
Resources
Special Files
Tags

Extensions

pgchess 0.1.0
A Chess extension

README

pgchess 0.1.0

This library contains a single PostgreSQL extension dedicated to the game of Chess.

To build pgchess, just do this:

make
make installcheck
make install

If you encounter an error such as:

"Makefile", line 8: Need an operator

You need to use GNU make, which may well be installed on your system as gmake:

gmake
gmake install
gmake installcheck

If you encounter an error such as:

make: pg_config: Command not found

Be sure that you have pg_config installed and in your path. If you used a package management system such as RPM to install PostgreSQL, be sure that the -devel package is also installed. If necessary tell the build process where to find it:

env PG_CONFIG=/path/to/pg_config make && make installcheck && make install

Once pgchess is installed, you can add it to a database. You must be running PostgreSQL 9.1.0 or greater, so it's a simple as connecting to a database as a super user and running:

CREATE EXTENSION pgchess;

Dependencies

This extension has no dependencies other than PostgreSQL and PL/pgSQL.

Copyright and License

Copyright (c) 2010-2012 Gianni Ciolli.

This module is free software; you can redistribute it and/or modify it under the GNU General Public License version 3 or later.