mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
59 lines
1.2 KiB
Bash
59 lines
1.2 KiB
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-2015 Free Software Foundation, Inc."
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="http://ftpmirror.gnu.org/chess/gnuchess-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="9a99e963355706cab32099d140b698eda9de164ebce40a5420b1b9772dd04802"
|
|
PATCHES="gnuchess-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
gnuchess = $portVersion
|
|
cmd:gnuchess = $portVersion
|
|
cmd:gnuchessu = $portVersion
|
|
cmd:gnuchessx = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libintl
|
|
lib:libiconv
|
|
lib:libncurses
|
|
lib:libreadline
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libintl
|
|
devel:libiconv
|
|
devel:libncurses
|
|
devel:libreadline
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:awk
|
|
cmd:gettext
|
|
cmd:g++
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|