mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
45 lines
1023 B
Bash
45 lines
1023 B
Bash
SUMMARY="A chess engine and console frontend"
|
|
DESCRIPTION="GNU Chess is a free software chess engine developed by the GNU \
|
|
project. It started as a project by Stuart Cracraft and Richard Stallman in \
|
|
1984. It is supported as an engine for a wide range of graphical frontents \
|
|
such as XBoard and glChess, but also works autonomously on the console."
|
|
HOMEPAGE="https://www.gnu.org/software/chess/"
|
|
COPYRIGHT="2001-2011 Free Software Foundation, Inc."
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="http://ftp.gnu.org/gnu/chess/gnuchess-6.2.1.tar.gz"
|
|
CHECKSUM_SHA256="17caab725539447bcb17a14b17905242cbf287087e53a6777524feb7bbaeed06"
|
|
PATCHES="gnuchess-6.2.1.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
gnuchess = $portVersion
|
|
cmd:gnuchess = $portVersion
|
|
cmd:gnuchessu = $portVersion
|
|
cmd:gnuchessx = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:gcc
|
|
cmd:awk
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|