mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
* Recipe for tworld (Tile World) * Update tworld-1.3.2.recipe * fixing recipe * New icon for rdef * Correcting spelling mistakes on .rdef * Update tworld-1.3.2.recipe * New patch for tworld. * removing * Patch for tworld * Update tworld-1.3.2.recipe
55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
SUMMARY="Emulation of the game Chip's Challenge"
|
|
DESCRIPTION="Tile World is an emulation of the game Chip's Challenge. \
|
|
Chip's Challenge was originally written for the Atari Lynx by Chuck Sommerville, \
|
|
and was later ported to MS Windows by Microsoft (among other ports). \
|
|
Chip's Challenge is a game made up of both intellectually engaging puzzles \
|
|
and situations demanding fast reflexes. As you might have guessed, \
|
|
it is a tile-based game. The object of each level is simply to get out — i.e., \
|
|
to find and achieve the exit tile. This simple task, however, \
|
|
can sometimes be extremely challenging."
|
|
HOMEPAGE="http://www.muppetlabs.com/~breadbox/software/tworld/"
|
|
COPYRIGHT="2001-2015 Brian Raiter"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="http://www.muppetlabs.com/~breadbox/pub/software/tworld/tworld-$portVersion-CCLPs.tar.gz"
|
|
CHECKSUM_SHA256="bb867a05e18613260ffad597d8afef8210687495746857a7ad00ef0f2126e12a"
|
|
PATCHES="tworld-1.3.2.patchset"
|
|
ADDITIONAL_FILES="tworld.rdef"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
tworldx = $portVersion
|
|
app:tworld = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libsdl
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libsdl
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:g++
|
|
cmd:make
|
|
cmd:awk
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure --omit-dirs binDir ./configure --bindir=$appsDir
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
mkdir -p $manDir/man6
|
|
cp -f docs/tworld.6 $manDir/man6
|
|
mv $appsDir/tworld $appsDir/TileWorld
|
|
addResourcesToBinaries $portDir/additional-files/tworld.rdef $appsDir/TileWorld
|
|
addAppDeskbarSymlink $appsDir/TileWorld
|
|
}
|