diff options
Diffstat (limited to 'development')
-rw-r--r-- | development/ShellCheck-bin/ShellCheck-bin.SlackBuild | 4 | ||||
-rw-r--r-- | development/ShellCheck-bin/ShellCheck-bin.info | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/development/ShellCheck-bin/ShellCheck-bin.SlackBuild b/development/ShellCheck-bin/ShellCheck-bin.SlackBuild index c9b0f122fe31..943d423383a9 100644 --- a/development/ShellCheck-bin/ShellCheck-bin.SlackBuild +++ b/development/ShellCheck-bin/ShellCheck-bin.SlackBuild @@ -8,7 +8,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=ShellCheck-bin BINNAM=shellcheck -VERSION=${VERSION:-0.9.0} +VERSION=${VERSION:-0.10.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -17,7 +17,7 @@ if [ -z "$ARCH" ]; then ARCH=$( uname -m ) fi -if [ "$ARCH" != "x86_64" ]; then +if [ "$ARCH" != "x86_64" ] && [ "$ARCH" != "aarch64" ] ; then echo "$ARCH is not supported." exit 1 fi diff --git a/development/ShellCheck-bin/ShellCheck-bin.info b/development/ShellCheck-bin/ShellCheck-bin.info index b542ebeb9c9c..12b859af07d5 100644 --- a/development/ShellCheck-bin/ShellCheck-bin.info +++ b/development/ShellCheck-bin/ShellCheck-bin.info @@ -1,10 +1,12 @@ PRGNAM="ShellCheck-bin" -VERSION="0.9.0" +VERSION="0.10.0" HOMEPAGE="https://www.shellcheck.net" DOWNLOAD="UNSUPPORTED" MD5SUM="" -DOWNLOAD_x86_64="https://github.com/koalaman/shellcheck/releases/download/v0.9.0/shellcheck-v0.9.0.linux.x86_64.tar.xz" -MD5SUM_x86_64="206ca97e055fccfe3546369d14a37760" +DOWNLOAD_x86_64="https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.x86_64.tar.xz \ + https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.aarch64.tar.xz" +MD5SUM_x86_64="8a0f1236a7e91c48f724288f482c5d4d \ + b8c60450374889c9d9b5fda32af576b6" REQUIRES="" MAINTAINER="D Woodfall" EMAIL="dave@slackbuilds.org" |