:-'Generic Commit'

This commit is contained in:
Your Name
2025-05-29 23:07:07 +12:00
parent 7b6b89c5d9
commit fc4096d649
5 changed files with 90 additions and 15 deletions

View File

@ -80,12 +80,12 @@ function install_packages() {
case $OS in
"Ubuntu"|"Debian GNU/Linux")
# Common packages for both Ubuntu and Debian
PACKAGES="build-essential cmake git wget tar curl ninja-build mold nodejs npm"
PACKAGES="build-essential cmake git wget tar curl ninja-build mold nodejs npm perl"
INSTALLCMD="apt-get install -y"
UPDATECMD="apt-get update"
;;
"Alpine Linux")
PACKAGES="build-base cmake git wget tar curl ninja mold nodejs npm linux-headers"
PACKAGES="build-base cmake git wget tar curl ninja mold nodejs npm linux-headers perl"
INSTALLCMD="apk add --no-cache"
UPDATECMD="apk update"
;;