mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
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:
parent
708fd48d49
commit
b8309f153e
2 changed files with 10 additions and 4 deletions
|
@ -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}
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue