Files
haikuports/haiku-games/becheckers/becheckers-1.0.1.recipe
2015-07-02 11:13:12 -04:00

42 lines
811 B
Bash
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
SUMMARY="A simple checkers game for two players"
DESCRIPTION="
BeCheckers is a simple checkers game for two players. It follows almost all \
American Checker Federation (ACF) rules.
"
HOMEPAGE="https://github.com/HaikuArchives/BeCheckers"
SOURCE_URI="git://github.com/HaikuArchives/BeCheckers.git#d4fbfc69656ba5861184d37f7932b9a53ff28373"
LICENSE="MIT"
COPYRIGHT="2000 Jeremy J. Gibbons"
REVISION="2"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
PROVIDES="
BeCheckers = $portVersion
app:BeCheckers = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:gcc
"
BUILD()
{
g++ -o BeCheckers -lbe \
BeCheckers.cpp BeCheckersWindow.cpp \
Checker.cpp CheckerBoard.cpp
}
INSTALL()
{
mkdir -p $appsDir
cp BeCheckers $appsDir
addAppDeskbarSymlink $appsDir/BeCheckers
}