From 81530ec04059a4ea0a85bc2247ed0f96ca41a2e1 Mon Sep 17 00:00:00 2001 From: everest Date: Wed, 9 Mar 2022 01:07:14 +0000 Subject: [PATCH] Add files via upload --- glacier-install.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 glacier-install.sh diff --git a/glacier-install.sh b/glacier-install.sh new file mode 100644 index 0000000..6ce131d --- /dev/null +++ b/glacier-install.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# glacier-install +# Script used to fetch installation scripts and run them + +echo "[ ? ] Enter package name:" && read input +echo "[ i ] Downloading source tarball for $input..." +wget https://github.com/everest-linux/glacier-pkgs/raw/main/pkgs/$input.tar.gz +echo "[ i ] Unpacking $input.tar.gz..." +tar -xvf $input.tar.gz +cd $input +chmod +x INSTALL.sh +./INSTALL.sh +rm $input.tar.gz +echo "Done."