photoprism/scripts/dist/install-go.sh

49 lines
1.3 KiB
Bash
Raw Normal View History

#!/bin/bash
2022-02-18 17:40:58 +01:00
PATH="/usr/local/sbin/:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/scripts"
2022-02-18 17:40:58 +01:00
GOLANG_VERSION=1.18
DESTDIR=$(realpath "${1:-/usr/local}")
2022-02-18 17:40:58 +01:00
# abort if not executed as root
2022-02-18 17:40:58 +01:00
if [[ $(id -u) != "0" ]]; then
echo "Usage: run ${0##*/} as root" 1>&2
2022-02-18 17:40:58 +01:00
exit 1
fi
echo "Installing Go in \"$DESTDIR\"..."
2022-02-18 17:40:58 +01:00
set -e
SYSTEM_ARCH=$("$(dirname "$0")/arch.sh")
DESTARCH=${2:-$SYSTEM_ARCH}
2022-02-18 17:40:58 +01:00
mkdir -p "$DESTDIR"
2022-02-18 17:40:58 +01:00
set -eux;
if [[ $DESTARCH == "amd64" ]]; then
2022-02-18 17:40:58 +01:00
URL="https://go.dev/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz"
CHECKSUM="e85278e98f57cdb150fe8409e6e5df5343ecb13cebf03a5d5ff12bd55a80264f *go.tgz"
elif [[ $DESTARCH == "arm64" ]]; then
2022-02-18 17:40:58 +01:00
URL="https://go.dev/dl/go${GOLANG_VERSION}.linux-arm64.tar.gz"
CHECKSUM="7ac7b396a691e588c5fb57687759e6c4db84a2a3bbebb0765f4b38e5b1c5b00e *go.tgz"
elif [[ $DESTARCH == "arm" ]]; then
2022-02-18 17:40:58 +01:00
URL="https://go.dev/dl/go${GOLANG_VERSION}.linux-armv6l.tar.gz"
CHECKSUM="a80fa43d1f4575fb030adbfbaa94acd860c6847820764eecb06c63b7c103612b *go.tgz"
2022-02-18 17:40:58 +01:00
else
echo "Unsupported Machine Architecture: $DESTARCH" 1>&2
2022-02-18 17:40:58 +01:00
exit 1
fi
echo "Downloading Go from \"$URL\". Please wait."
wget -O go.tgz $URL
echo "$CHECKSUM" | sha256sum -c -
rm -rf /usr/local/go
tar -C /usr/local -xzf go.tgz
rm go.tgz
2022-02-18 17:40:58 +01:00
/usr/local/go/bin/go version
echo "Done."