tworld: fix reference to libSDL (#4329)

This commit is contained in:
Schrijvers Luc
2019-11-04 09:37:35 +01:00
committed by Jérôme Duval
parent 4cd0e6eba3
commit 51ba5e822c

View File

@@ -1,16 +1,16 @@
SUMMARY="Emulation of the game Chip's Challenge" SUMMARY="Emulation of the game Chip's Challenge"
DESCRIPTION="Tile World is an 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, \ Chip's Challenge was originally written for the Atari Lynx by Chuck \
and was later ported to MS Windows by Microsoft (among other ports). \ Sommerville, and was later ported to MS Windows by Microsoft (among other \
Chip's Challenge is a game made up of both intellectually engaging puzzles \ ports). Chip's Challenge is a game made up of both intellectually engaging \
and situations demanding fast reflexes. As you might have guessed, \ 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., \ it is a tile-based game. The object of each level is simply to get out — \
to find and achieve the exit tile. This simple task, however, \ i.e., to find and achieve the exit tile. This simple task, however, can \
can sometimes be extremely challenging." sometimes be extremely challenging."
HOMEPAGE="http://www.muppetlabs.com/~breadbox/software/tworld/" HOMEPAGE="http://www.muppetlabs.com/~breadbox/software/tworld/"
COPYRIGHT="2001-2015 Brian Raiter" COPYRIGHT="2001-2015 Brian Raiter"
LICENSE="GNU GPL v3" LICENSE="GNU GPL v3"
REVISION="1" REVISION="2"
SOURCE_URI="http://www.muppetlabs.com/~breadbox/pub/software/tworld/tworld-$portVersion-CCLPs.tar.gz" SOURCE_URI="http://www.muppetlabs.com/~breadbox/pub/software/tworld/tworld-$portVersion-CCLPs.tar.gz"
CHECKSUM_SHA256="bb867a05e18613260ffad597d8afef8210687495746857a7ad00ef0f2126e12a" CHECKSUM_SHA256="bb867a05e18613260ffad597d8afef8210687495746857a7ad00ef0f2126e12a"
PATCHES="tworld-1.3.2.patchset" PATCHES="tworld-1.3.2.patchset"
@@ -19,22 +19,22 @@ ADDITIONAL_FILES="tworld.rdef"
ARCHITECTURES="x86_gcc2 x86 x86_64" ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES=" PROVIDES="
tworldx = $portVersion tworld = $portVersion
app:tworld = $portVersion app:tworld = $portVersion
" "
REQUIRES=" REQUIRES="
haiku haiku
lib:libsdl lib:libSDL_1.2
" "
BUILD_REQUIRES=" BUILD_REQUIRES="
haiku_devel haiku_devel
devel:libsdl devel:libSDL
" "
BUILD_PREREQUIRES=" BUILD_PREREQUIRES="
cmd:g++
cmd:make
cmd:awk cmd:awk
cmd:gcc
cmd:make
" "
BUILD() BUILD()
@@ -49,6 +49,8 @@ INSTALL()
mkdir -p $manDir/man6 mkdir -p $manDir/man6
cp -f docs/tworld.6 $manDir/man6 cp -f docs/tworld.6 $manDir/man6
mv $appsDir/tworld $appsDir/TileWorld mv $appsDir/tworld $appsDir/TileWorld
addResourcesToBinaries $portDir/additional-files/tworld.rdef $appsDir/TileWorld addResourcesToBinaries $portDir/additional-files/tworld.rdef $appsDir/TileWorld
addAppDeskbarSymlink $appsDir/TileWorld addAppDeskbarSymlink $appsDir/TileWorld
} }