diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2024-06-10 20:38:36 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-06-15 07:38:27 +0700 |
commit | b8309f153ef0c38cf1ecfcbf58b983a64a2793b6 (patch) | |
tree | ec52d9bc924e01996e2e826b61e6a6d6dc02d5b5 | |
parent | 708fd48d493e50a1cca00f758b213d130e32d2d5 (diff) |
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>
-rw-r--r-- | development/ispc/ispc.SlackBuild | 6 | ||||
-rw-r--r-- | development/ispc/ispc.info | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/development/ispc/ispc.SlackBuild b/development/ispc/ispc.SlackBuild index 7f7be60553da..22874061f550 100644 --- a/development/ispc/ispc.SlackBuild +++ b/development/ispc/ispc.SlackBuild @@ -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} diff --git a/development/ispc/ispc.info b/development/ispc/ispc.info index cc0f17acc4cb..8bda9c51de52 100644 --- a/development/ispc/ispc.info +++ b/development/ispc/ispc.info @@ -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" |