deathchase3d, fix reference to libSDL* (#3966)

This commit is contained in:
Schrijvers Luc
2019-07-07 14:07:34 +02:00
committed by GitHub
parent bb8db39516
commit 7599e9df71

View File

@@ -7,7 +7,7 @@ the motorcycle with Z,X,K, and M, press space to fire, and ESC to exit."
HOMEPAGE="https://osgameclones.com/"
COPYRIGHT="2002 Paul Robson"
LICENSE="GNU GPL v2"
REVISION="1"
REVISION="2"
SOURCE_URI="https://web.archive.org/web/20070711231311/http://www.robsons.org.uk/archive/www.autismuk.freeserve.co.uk/deathchase3d-0.9.tar.gz"
CHECKSUM_SHA256="42b4c5551be4662fcba6a6c7476ff6235307cf39e13781d6f1f13abe26a7db2a"
SOURCE_DIR="deathchase3d-$portVersion"
@@ -20,14 +20,15 @@ PROVIDES="
"
REQUIRES="
haiku
lib:libsdl
lib:libSDL_1.2
"
BUILD_REQUIRES="
haiku_devel
devel:libsdl
devel:libSDL
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoreconf
cmd:ld
cmd:libtoolize
@@ -44,12 +45,13 @@ PATCH()
BUILD()
{
autoreconf -vfi
runConfigure ./configure --bindir="$appsDir"
runConfigure --omit-dirs binDir \
./configure --bindir="$appsDir"
make $jobArgs
}
INSTALL()
{
make install
addAppDeskbarSymlink $appsDir/deathchase3d
addAppDeskbarSymlink $appsDir/deathchase3d DeathChase3D
}