0
0
Fork 0
haikuports/haiku-apps/belife/belife-1.0.0.recipe

56 lines
1.4 KiB
Bash
Raw Permalink Normal View History

SUMMARY="Conway's Game of Life"
2013-12-12 22:16:10 +00:00
DESCRIPTION="
2014-01-02 21:40:57 +00:00
The Game of Life is not a game in the conventional sense. There are no \
players, and no winning or losing. Once the \"pieces\" are placed in the \
starting position, the rules determine everything that happens later. \
Nevertheless, Life is full of surprises! In most cases, it is impossible to \
look at a starting position (or pattern) and see what will happen in the \
future. The only way to find out is to follow the rules of the game.
Find out more about about Conway's Game of Life:
- http://en.wikipedia.org/wiki/Conway's_Game_of_Life
2016-02-26 15:33:51 +00:00
- http://www.math.com/students/wonders/life/life.html"
2013-12-12 22:16:10 +00:00
HOMEPAGE="https://github.com/HaikuArchives/BeLife"
COPYRIGHT="2006 Studio-33"
2016-02-17 19:26:37 +00:00
LICENSE="BeLife License"
REVISION="2"
srcGitRev="96e31e8b4543723c7c8ea4a3d0c57c8cd52f82ca"
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="2566dc527e336277173179c7cce0771579257e19bbcd853377cd6112547a08d1"
SOURCE_DIR="BeLife-$srcGitRev"
2016-02-17 19:26:37 +00:00
2013-12-12 22:16:10 +00:00
ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
belife = $portVersion
2014-10-28 21:25:03 +00:00
app:BeLife = $portVersion
2013-12-12 22:16:10 +00:00
"
REQUIRES="
haiku
2013-12-12 22:16:10 +00:00
"
2016-02-17 19:26:37 +00:00
BUILD_REQUIRES="
haiku_devel
"
2013-12-12 22:16:10 +00:00
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
cmd:xres
"
BUILD()
{
cd src
2014-07-21 17:55:53 +00:00
make OBJ_DIR=objects
2013-12-12 22:16:10 +00:00
}
INSTALL()
{
cd src
2014-07-21 17:55:53 +00:00
mkdir -p $appsDir/BeLife
cp objects/BeLife $appsDir/BeLife/
2013-12-13 14:36:35 +00:00
addAppDeskbarSymlink $appsDir/BeLife/BeLife
cp ../readme $appsDir/BeLife
2013-12-12 22:16:10 +00:00
}