summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Andrew Clemons2022-04-14 11:32:40 +0200
committer Willy Sudiarto Raharjo2022-04-16 07:12:40 +0200
commit5c2ce5d2675ad2c9b7867e3b498ffa389b330502 (patch)
treed1c887c115dcd9ae4ba7c619e8360586d2592050
parent91b5a9e5687be1603f89ede0b22b5b7be6d015ac (diff)
downloadslackbuilds-5c2ce5d2675ad2c9b7867e3b498ffa389b330502.tar.gz
system/tmsu-bin: Only x86_64 is supported.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--system/tmsu-bin/tmsu-bin.SlackBuild5
-rw-r--r--system/tmsu-bin/tmsu-bin.info8
2 files changed, 9 insertions, 4 deletions
diff --git a/system/tmsu-bin/tmsu-bin.SlackBuild b/system/tmsu-bin/tmsu-bin.SlackBuild
index 1f7925dc7b..0df7a2b397 100644
--- a/system/tmsu-bin/tmsu-bin.SlackBuild
+++ b/system/tmsu-bin/tmsu-bin.SlackBuild
@@ -53,6 +53,11 @@ OUTPUT=${OUTPUT:-/tmp}
set -e
+if [ "$ARCH" != "x86_64" ]; then
+ echo "Package for $ARCH architecture is not available."
+ exit 1
+fi
+
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
diff --git a/system/tmsu-bin/tmsu-bin.info b/system/tmsu-bin/tmsu-bin.info
index c619a2f42a..ce52fe5549 100644
--- a/system/tmsu-bin/tmsu-bin.info
+++ b/system/tmsu-bin/tmsu-bin.info
@@ -1,10 +1,10 @@
PRGNAM="tmsu-bin"
VERSION="0.7.5"
HOMEPAGE="https://tmsu.org"
-DOWNLOAD="https://github.com/oniony/TMSU/releases/download/v0.7.5/tmsu-x86_64-0.7.5.tgz"
-MD5SUM="266bb562b8831370c76a4beb341d9e10"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
+DOWNLOAD="UNSUPPORTED"
+MD5SUM=""
+DOWNLOAD_x86_64="https://github.com/oniony/TMSU/releases/download/v0.7.5/tmsu-x86_64-0.7.5.tgz"
+MD5SUM_x86_64="266bb562b8831370c76a4beb341d9e10"
REQUIRES=""
MAINTAINER="toolonely"
EMAIL="lonely_@tutanota.com"