diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-04-14 21:32:40 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-16 12:12:40 +0700 |
commit | 5c2ce5d2675ad2c9b7867e3b498ffa389b330502 (patch) | |
tree | d1c887c115dcd9ae4ba7c619e8360586d2592050 /system/tmsu-bin/tmsu-bin.SlackBuild | |
parent | 91b5a9e5687be1603f89ede0b22b5b7be6d015ac (diff) |
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>
Diffstat (limited to 'system/tmsu-bin/tmsu-bin.SlackBuild')
-rw-r--r-- | system/tmsu-bin/tmsu-bin.SlackBuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/system/tmsu-bin/tmsu-bin.SlackBuild b/system/tmsu-bin/tmsu-bin.SlackBuild index 1f7925dc7b194..0df7a2b3972d5 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 |