DRY up some install scripts
parent
8e73c4c778
commit
78eb8854bf
@ -1,30 +1,20 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -x
|
||||
|
||||
# shellcheck disable=SC1090
|
||||
source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh"
|
||||
|
||||
APP=hugo
|
||||
VERSION=${VERSION:-0.81.0}
|
||||
APPS_DIR=${XDG_DATA_HOME}/buddy-up/apps/${APP}
|
||||
|
||||
ARCH=
|
||||
case $(get_arch) in
|
||||
amd64) ARCH=64bit
|
||||
get_arch () {
|
||||
case $(uname -m) in
|
||||
x86_64*) echo 64bit;;
|
||||
*) >&2 echo "unsupported architecture: $(uname -m)"; exit 1;;
|
||||
esac
|
||||
URL=https://github.com/gohugoio/hugo/releases/download/v${VERSION}/hugo_${VERSION}_$(uname)-${ARCH}.tar.gz
|
||||
}
|
||||
|
||||
extract_tarball "${URL}" "${APPS_DIR}/${VERSION}"
|
||||
set_current_link "${APPS_DIR}" "${VERSION}"
|
||||
APP=hugo
|
||||
VERSION=${VERSION:-0.85.0}
|
||||
DEST="${XDG_DATA_HOME}/apps/releases/${APP}"
|
||||
URL=https://github.com/gohugoio/hugo/releases/download/v${VERSION}/hugo_extended_${VERSION}_$(uname)-$(get_arch).tar.gz
|
||||
|
||||
apps=$(find "${APPS_DIR}/current/" -maxdepth 1 -executable -type f -exec basename {} \;)
|
||||
cd "${XDG_BIN_HOME}"
|
||||
for bin in $apps; do
|
||||
if [[ ! -s $bin ]]; then
|
||||
ln --symbolic \
|
||||
"$(relative_path "${XDG_BIN_HOME}" "${APPS_DIR}/current/${bin}")" \
|
||||
"${bin}"
|
||||
fi
|
||||
done
|
||||
extract_tarball "${URL}" "${DEST}/${VERSION}"
|
||||
set_current_link "${DEST}" "${VERSION}"
|
||||
set_link "${XDG_BIN_HOME}/${APP}" "${DEST}" "${APP}"
|
||||
|
Loading…
Reference in New Issue