Gemz recipe created.

This commit is contained in:
MrPoxipol
2013-12-14 01:08:21 +00:00
parent 642f7d396f
commit 7a514decf8
2 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
SUMMARY="Gemz is an SDL implementation of the popular puzzle game 'Bejeweled'."
DESCRIPTION="Gemz is an SDL implementation of the popular puzzle game 'Bejeweled'."
HOMEPAGE="http://sourceforge.net/projects/gemz/"
SRC_URI="http://sourceforge.net/projects/gemz/files/gemz/Source/gemz-0.97.0.tgz/download"
CHECKSUM_MD5="ea71e3cf9ee7f3b7f6d0a7f4cbe0af58"
LICENSE="GNU GPL v2"
COPYRIGHT="2003-2013 Jonathan Bilodeau"
REVISION="1"
ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
gemz = $portVersion
app:gemz = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix >= $haikuVersion
lib:libsdl$secondaryArchSuffix
lib:libsdl_image$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel >= $haikuVersion
devel:libsdl$secondaryArchSuffix
devel:libsdl_image$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:make
cmd:which
cmd:sdl_config$secondaryArchSuffix
"
PATCHES="
gemz-0.97.0.patch
"
BUILD()
{
make
}
INSTALL()
{
mkdir -p $appsDir/gemz
cp -r fonts gfx tilesets $appsDir/gemz
cp gemz $appsDir/gemz/gemz
addAppDeskbarSymlink $appsDir/gemz/gemz "Gemz"
}