opentyrian, fix references to libSDL*, don't use -Werror (#4037)

* opentyrian, fix references to libSDL*
This commit is contained in:
Schrijvers Luc
2019-07-26 16:02:59 +02:00
committed by GitHub
parent 3cb194ee09
commit f465412fb5

View File

@@ -8,7 +8,7 @@ free availability of his Tyrian artwork under generic liberal terms."
HOMEPAGE="https://bitbucket.org/opentyrian/opentyrian/" HOMEPAGE="https://bitbucket.org/opentyrian/opentyrian/"
COPYRIGHT="OpenTyrian Team" COPYRIGHT="OpenTyrian Team"
LICENSE="GNU GPL v2" LICENSE="GNU GPL v2"
REVISION="2" REVISION="3"
SOURCE_URI="http://www.camanis.net/opentyrian/releases/opentyrian-$portVersion-src.tar.gz" SOURCE_URI="http://www.camanis.net/opentyrian/releases/opentyrian-$portVersion-src.tar.gz"
CHECKSUM_SHA256="f54b6b3cedcefa187c9f605d6164aae29ec46a731a6df30d351af4c008dee45f" CHECKSUM_SHA256="f54b6b3cedcefa187c9f605d6164aae29ec46a731a6df30d351af4c008dee45f"
SOURCE_DIR="opentyrian-$portVersion" SOURCE_DIR="opentyrian-$portVersion"
@@ -24,14 +24,14 @@ PROVIDES="
REQUIRES=" REQUIRES="
haiku$secondaryArchSuffix haiku$secondaryArchSuffix
opentyrian_data opentyrian_data
lib:libSDL$secondaryArchSuffix lib:libSDL_1.2$secondaryArchSuffix
lib:libsdl_net$secondaryArchSuffix lib:libSDL_net_1.2$secondaryArchSuffix
" "
BUILD_REQUIRES=" BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel haiku${secondaryArchSuffix}_devel
devel:libsdl$secondaryArchSuffix devel:libSDL$secondaryArchSuffix
devel:libsdl_net$secondaryArchSuffix devel:libSDL_net$secondaryArchSuffix
" "
BUILD_PREREQUIRES=" BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix cmd:gcc$secondaryArchSuffix
@@ -41,12 +41,13 @@ BUILD_PREREQUIRES="
BUILD() BUILD()
{ {
make $jobArgs make $jobArgs release
} }
INSTALL() INSTALL()
{ {
mkdir -p $appsDir/OpenTyrian mkdir -p $appsDir/OpenTyrian $manDir/man6
cp opentyrian* $appsDir/OpenTyrian/OpenTyrian cp opentyrian* $appsDir/OpenTyrian/OpenTyrian
cp linux/man/opentyrian.6 $manDir/man6
addAppDeskbarSymlink $appsDir/OpenTyrian/OpenTyrian OpenTyrian addAppDeskbarSymlink $appsDir/OpenTyrian/OpenTyrian OpenTyrian
} }