1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gogs_ynh.git synced 2024-09-03 20:36:23 +02:00
gogs_ynh/scripts/_common.sh

45 lines
1,013 B
Bash
Raw Normal View History

2016-08-15 15:38:50 +02:00
#
# Common variables
#
APPNAME="gogs"
# Gogs version
VERSION="0.9.71"
# Detect the system architecture to download the right tarball
case $(arch) in
x86_64) ARCHITECTURE="amd64"
;;
2016-08-15 19:30:32 +02:00
i386|i686) ARCHITECTURE="386"
2016-08-15 15:38:50 +02:00
;;
armhf|armel|armv7l) ARCHITECTURE="arm"
2016-08-15 15:38:50 +02:00
;;
*) echo "Unable to detect your achitecture" && exit 1
;;
esac
# Remote URL to fetch Gogs tarball
GOGS_BINARY_URL="https://github.com/gogits/gogs/releases/download/v${VERSION}/linux_${ARCHITECTURE}.zip"
2016-08-15 15:38:50 +02:00
#
# Common helpers
#
# Download and extract Gogs binary to the given directory
# usage: extract_gogs DESTDIR
extract_gogs() {
local DESTDIR=$1
local TMPDIR=$(mktemp -d)
2016-08-15 15:38:50 +02:00
# retrieve and extract Gogs tarball
gogs_tarball="/tmp/gogs.zip"
2016-08-15 15:38:50 +02:00
rm -f "$gogs_tarball"
wget -q -O "$gogs_tarball" "$GOGS_BINARY_URL" \
|| ynh_die "Unable to download Gogs tarball"
unzip -q "$gogs_tarball" -d "$TMPDIR" \
2016-08-15 15:38:50 +02:00
|| ynh_die "Unable to extract Gogs tarball"
sudo mv "$TMPDIR"/gogs/* "$DESTDIR"
rm -rf "$gogs_tarball" "$TMPDIR"
2016-08-15 15:38:50 +02:00
}