BeLife: update recipe.

This commit is contained in:
Augustin Cavalier
2014-07-21 13:55:53 -04:00
parent 9dfba33e29
commit 2cbac1195a

View File

@@ -1,4 +1,4 @@
SUMMARY="An app to play the game of life"
SUMMARY="The Game of Life."
DESCRIPTION="
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 \
@@ -9,19 +9,20 @@ future. The only way to find out is to follow the rules of the game.
"
HOMEPAGE="https://github.com/HaikuArchives/BeLife"
SRC_URI="git://github.com/HaikuArchives/BeLife.git#aa35a935e55e9ee17fbb9d414534ba79798a95a1"
REVISION="1"
REVISION="2"
LICENSE="BeLife License"
COPYRIGHT="2006 Studio-33"
ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
belife = $portVersion
app:belife = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
@@ -29,6 +30,7 @@ BUILD_PREREQUIRES="
cmd:mkdepend
cmd:xres
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
"
@@ -36,13 +38,14 @@ BUILD_REQUIRES="
BUILD()
{
cd src
make
make OBJ_DIR=objects
}
INSTALL()
{
cd src
make install INSTALL_DIR=$appsDir/BeLife
mkdir -p $appsDir/BeLife
cp objects/BeLife $appsDir/BeLife/
addAppDeskbarSymlink $appsDir/BeLife/BeLife
cp ../readme $appsDir/BeLife
}