Rewrite ARCHITECTURES syntax to new HaikuPorter changes.

HaikuPorter now does not care what is in ARCHITECTURES when
building for a SECONDARY_ARCHITECTURE.
This commit is contained in:
Augustin Cavalier
2015-08-04 11:59:44 -04:00
parent 23faff5dbc
commit 55dd9cf19d
304 changed files with 377 additions and 1991 deletions

View File

@@ -7,13 +7,8 @@ design your own maps!"
LICENSE="Zlib"
COPYRIGHT="2007-2012 Magnus Auvinen"
ARCHITECTURES="!x86" # Once it works, remove the bang
if [ $effectiveTargetArchitecture != "x86_gcc2" ]; then
ARCHITECTURES="!x86_gcc2 $ARCHITECTURES" # Once it works, remove the bang
else
ARCHITECTURES="!x86_gcc2 $ARCHITECTURES"
fi
SECONDARY_ARCHITECTURES="!x86_gcc2 !x86" # Once it works, remove the bang on x86
ARCHITECTURES="!x86_gcc2 ?x86"
SECONDARY_ARCHITECTURES="?x86"
REVISION="1"
HOMEPAGE="https://www.teeworlds.com"
SOURCE_URI="https://downloads.teeworlds.com/teeworlds-0.6.3-src.tar.gz"
@@ -30,7 +25,7 @@ REQUIRES="
lib:libGL$secondaryArchSuffix
lib:libGLU$secondaryArchSuffix
"
BUILD_REQUIRES="
"
@@ -46,10 +41,10 @@ BUILD_PREREQUIRES="
"
PATCHES="teeworlds-0.6.3.patch"
BUILD()
{
bam release
bam release
}
INSTALL()