Remove unecessary element quoting

This commit is contained in:
2024-12-05 21:25:11 -05:00
parent be5dfb2832
commit ab1569fced

View File

@@ -168,99 +168,99 @@ install_dependencies() {
case "$ID" in case "$ID" in
fedora|centos) fedora|centos)
pkg_list+=( pkg_list+=(
"bash-completion" bash-completion
"bzip2" bzip2
"gcc" gcc
"gcc-c++" gcc-c++
"git" git
"make" make
"ncurses-devel" ncurses-devel
"patch" patch
"rsync" rsync
"tar" tar
"unzip" unzip
"wget" wget
"which" which
"diffutils" diffutils
"python3" python3
"python3-devel" python3-devel
"python3-setuptools" python3-setuptools
"python3-pyelftools" python3-pyelftools
"perl-base" perl-base
"perl-Data-Dumper" perl-Data-Dumper
"perl-File-Compare" perl-File-Compare
"perl-File-Copy" perl-File-Copy
"perl-FindBin" perl-FindBin
"perl-IPC-Cmd" perl-IPC-Cmd
"perl-Thread-Queue" perl-Thread-Queue
"perl-Time-Piece" perl-Time-Piece
"perl-JSON-PP" perl-JSON-PP
"swig" swig
"clang" # for qosify clang # for qosify
"llvm15-libs" llvm15-libs
"patch") patch)
;; ;;
debian|ubuntu) debian|ubuntu)
pkg_list+=( pkg_list+=(
"build-essential" build-essential
"clang" clang
"flex" flex
"g++" g++
"gawk" gawk
"gcc-multilib" gcc-multilib
"gettext" gettext
"git" git
"libncurses5-dev" libncurses5-dev
"libssl-dev" libssl-dev
"python3-distutils" python3-distutils
"rsync" rsync
"unzip" unzip
"zlib1g-dev" zlib1g-dev
"file" file
"wget" wget
"patch") patch)
;; ;;
arch) arch)
pkg_list+=( pkg_list+=(
"base-devel" base-devel
"autoconf" autoconf
"automake" automake
"bash" bash
"binutils" binutils
"bison" bison
"bzip2" bzip2
"clang" clang
"fakeroot" fakeroot
"file" file
"findutils" findutils
"flex" flex
"gawk" gawk
"gcc" gcc
"gettext" gettext
"git" git
"grep" grep
"groff" groff
"gzip" gzip
"libelf" libelf
"libtool" libtool
"libxslt" libxslt
"m4" m4
"make" make
"ncurses" ncurses
"openssl" openssl
"patch" patch
"pkgconf" pkgconf
"python" python
"rsync" rsync
"sed" sed
"texinfo" texinfo
"time" time
"unzip" unzip
"util-linux" util-linux
"wget" wget
"which" which
"zlib" zlib
"patch") patch)
;; ;;
*) *)
debug "Skipping dependency install, your OS is unsupported" debug "Skipping dependency install, your OS is unsupported"
@@ -272,36 +272,36 @@ install_dependencies() {
case "$ID" in case "$ID" in
fedora|centos) fedora|centos)
pkg_list+=( pkg_list+=(
"@c-development" @c-development
"@development-tools" @development-tools
"@development-libs" @development-libs
"perl-FindBin" perl-FindBin
"zlib-static" zlib-static
"elfutils-libelf-devel" elfutils-libelf-devel
"gawk" gawk
"unzip" unzip
"file" file
"wget" wget
"python3" python3
"python2" python2
"axel" axel
"perl-IPC-Cmd") perl-IPC-Cmd)
;; ;;
debian|ubuntu) debian|ubuntu)
pkg_list+=( pkg_list+=(
"build-essential" build-essential
"libncurses5-dev" libncurses5-dev
"libncursesw5-dev" libncursesw5-dev
"zlib1g-dev" zlib1g-dev
"gawk" gawk
"git" git
"gettext" gettext
"libssl-dev" libssl-dev
"xsltproc" xsltproc
"wget" wget
"unzip" unzip
"python" python
"axel") axel)
;; ;;
*) *)
debug "Skipping dependency install, your OS is unsupported" debug "Skipping dependency install, your OS is unsupported"