development/ispc: Mark as 64bit only.

Upstream does not support i?86, only x86_64, armv7, and aarch64.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Andrew Clemons 2024-06-10 20:38:36 +09:00 committed by Willy Sudiarto Raharjo
parent 708fd48d49
commit b8309f153e
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 10 additions and 4 deletions

View file

@ -44,6 +44,12 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
exit 0
fi
# upstream only support x86_64 (and armv7/aarch64)
if [ "$ARCH" != "x86_64" ]; then
echo "$ARCH architecture is unsupported." >&2
exit 1
fi
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

View file

@ -1,10 +1,10 @@
PRGNAM="ispc"
VERSION="1.23.0"
HOMEPAGE="https://github.com/ispc/ispc/"
DOWNLOAD="https://github.com/ispc/ispc/archive/v1.23.0/ispc-1.23.0.tar.gz"
MD5SUM="df8a17f493c9b64d64617e588ba81ba9"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
DOWNLOAD="UNSUPPORTED"
MD5SUM=""
DOWNLOAD_x86_64="https://github.com/ispc/ispc/archive/v1.23.0/ispc-1.23.0.tar.gz"
MD5SUM_x86_64="df8a17f493c9b64d64617e588ba81ba9"
REQUIRES="tbb"
MAINTAINER="Lockywolf"
EMAIL="for_sbo.ispc_2024-03-02@lockywolf.net"