the-bastion/bin/admin/install-ttyrec.sh
2021-01-12 12:05:06 +01:00

55 lines
1.5 KiB
Bash
Executable file

#! /usr/bin/env bash
# vim: set filetype=sh ts=4 sw=4 sts=4 et:
set -e
PROGRAM_NAME=ovh-ttyrec
RELEASE_API_URL="https://api.github.com/repos/ovh/$PROGRAM_NAME/releases"
basedir=$(readlink -f "$(dirname "$0")"/../..)
# shellcheck source=lib/shell/install.inc
. "$basedir"/lib/shell/install.inc
set_download_url_package() {
type="$1"
case "$type" in
rpm) set_download_url "/${PROGRAM_NAME}-.+\\.$archre\\.rpm$";;
deb) set_download_url "/${PROGRAM_NAME}_.+_$archre\\.deb$";;
*) exit 1;;
esac
}
action_static() {
set_archre
os=$(uname -s | tr '[:upper:]' '[:lower:]')
if [ "$arch" = "x86_64" ] || [ "$arch" = "amd64" ]; then
set_download_url "/${PROGRAM_NAME}.*_(x86_|amd)64-$os-static-binary\\.tar\\.gz$"
else
set_download_url "/${PROGRAM_NAME}.*_$arch-$os-static-binary\\.tar\\.gz$"
fi
prepare_temp_folder
_download "$url"
# we have just one archive file in the current temp directory
# shellcheck disable=SC2035
tar xzf *.tar.gz
# at this point we have just one directory, named ovh-ttyrec-w.x.y.z, just use the shell completion to get in it!
cd ovh-ttyrec-*/
action_done
action_doing "Installing files"
for file in ttytime ttyrec ttyplay; do
action_detail "/usr/local/bin/$file"
install -m 0755 "$file" /usr/local/bin/
done
cd docs
for file in *.1; do
action_detail "/usr/local/man/man1/$file"
install -m 0644 "$file" /usr/local/man/man1/
done
action_done
cd /
}
install_main "$@"