qpkg/qpkg

23 lines
412 B
Plaintext
Raw Normal View History

2024-04-21 15:59:59 +00:00
#!/usr/bin/env bash
2024-04-21 16:02:38 +00:00
OLDPWD="$PWD"
2024-04-21 15:59:59 +00:00
if [ -d /tmp/qarch ]; then
rm -rf /tmp/qarch
fi
DEPS="bash"
for dep in $DEPS;
do
if ! command -v bash >/dev/null; then
echo "$dep is not installed. Please install it."
fi
done
if [ "$1" == "" ]; then
echo "Usage: qpkg <pkgname>"
fi
2024-04-21 16:02:38 +00:00
curl http://git.vern.cc/quitaxd/qpkg/raw/branch/main/pkgs/$1.sh | bash