Remove unused packages

This commit is contained in:
Ribbon 2023-05-18 23:58:33 +00:00
parent 7ac208cf30
commit e94ddce3bc
2 changed files with 2 additions and 14 deletions

View file

@ -195,7 +195,7 @@ freebsd()
archLinux() archLinux()
{ {
echo "Detected Arch Linux" echo "Detected Arch Linux"
packages="cmake fuse git gperf perl-html-parser nasm wget texinfo bison flex po4a autoconf curl file expat gmp libpng libtool libjpeg-turbo libvorbis sdla2_ttf m4 pkgconf po4a syslinux sdl12-compat meson python python-mako make xdg-utils zip unzip llvm clang perl" packages="cmake fuse git gperf perl-html-parser nasm wget texinfo bison flex po4a autoconf curl file expat gmp libtool m4 pkgconf po4a syslinux meson python python-mako make xdg-utils zip unzip llvm clang perl"
if [ "$1" == "qemu" ]; then if [ "$1" == "qemu" ]; then
packages="$packages qemu" packages="$packages qemu"
elif [ "$1" == "virtualbox" ]; then elif [ "$1" == "virtualbox" ]; then
@ -242,19 +242,13 @@ ubuntu()
libfuse-dev \ libfuse-dev \
libgmp-dev \ libgmp-dev \
libhtml-parser-perl \ libhtml-parser-perl \
libpng-dev \
libtool \ libtool \
libjpeg-dev \
libvorbis-dev \
libsdl2-ttf-dev \
libosmesa6-dev \
m4 \ m4 \
nasm \ nasm \
pkg-config \ pkg-config \
po4a \ po4a \
syslinux-utils \ syslinux-utils \
texinfo \ texinfo \
libsdl1.2-dev \
ninja-build \ ninja-build \
meson \ meson \
python3-mako \ python3-mako \
@ -312,7 +306,7 @@ fedora()
fi fi
fi fi
# Use rpm -q <package> to check if it's already installed # Use rpm -q <package> to check if it's already installed
PKGS=$(for pkg in file autoconf vim bison flex genisoimage gperf glibc-devel.i686 expat expat-devel fuse-devel fuse3-devel gmp-devel perl perl-HTML-Parser libpng-devel libtool libjpeg-turbo-devel libvorbis-devel SDL2_ttf-devel mesa-libOSMesa-devel m4 nasm po4a syslinux texinfo sdl12-compat-devel ninja-build meson python3-mako make gcc gcc-c++ openssl patch automake perl-Pod-Html perl-FindBin gperf curl gettext-devel perl-Pod-Xhtml pkgconf-pkg-config cmake llvm zip unzip lua luajit make clang ; do rpm -q $pkg > /dev/null || echo $pkg; done) PKGS=$(for pkg in file autoconf vim bison flex genisoimage gperf glibc-devel.i686 expat expat-devel fuse-devel fuse3-devel gmp-devel perl perl-HTML-Parser libtool m4 nasm po4a syslinux texinfo ninja-build meson python3-mako make gcc gcc-c++ openssl patch automake perl-Pod-Html perl-FindBin gperf curl gettext-devel perl-Pod-Xhtml pkgconf-pkg-config cmake llvm zip unzip lua luajit make clang ; do rpm -q $pkg > /dev/null || echo $pkg; done)
# If the list of packages is not empty, install missing # If the list of packages is not empty, install missing
COUNT=$(echo $PKGS | wc -w) COUNT=$(echo $PKGS | wc -w)
if [ $COUNT -ne 0 ]; then if [ $COUNT -ne 0 ]; then

View file

@ -21,12 +21,7 @@ RUN apt-get update \
libfuse-dev \ libfuse-dev \
libgmp-dev \ libgmp-dev \
libhtml-parser-perl \ libhtml-parser-perl \
libpng-dev \
libtool \ libtool \
libjpeg-dev \
libvorbis-dev \
libsdl2-ttf-dev \
libosmesa6-dev \
libfontconfig1-dev \ libfontconfig1-dev \
m4 \ m4 \
nasm \ nasm \
@ -34,7 +29,6 @@ RUN apt-get update \
po4a \ po4a \
syslinux-utils \ syslinux-utils \
texinfo \ texinfo \
libsdl1.2-dev \
ninja-build \ ninja-build \
meson \ meson \
python3-mako \ python3-mako \