Skip to content

Commit 925e669

Browse files
authored
always install a basic set of dependencies
1 parent b62ef41 commit 925e669

File tree

2 files changed

+19
-13
lines changed

2 files changed

+19
-13
lines changed

get-dependencies.sh

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,9 @@ set -eu
44

55
ARCH=$(uname -m)
66

7-
echo "Installing basic dependencies..."
7+
echo "Installing package dependencies..."
88
echo "---------------------------------------------------------------"
9-
pacman -Syu --noconfirm \
10-
base-devel \
11-
curl \
12-
git \
13-
libx11 \
14-
libxrandr \
15-
libxss \
16-
pulseaudio \
17-
pulseaudio-alsa \
18-
wget \
19-
xorg-server-xvfb \
20-
zsync
9+
# pacman -Syu --noconfirm PACKAGESHERE
2110

2211
echo "Installing debloated packages..."
2312
echo "---------------------------------------------------------------"

pre-setup.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,21 @@ chmod +x \
3838
"$ANYLINUX_TOOLS_DIR"/get-debloated-pkgs \
3939
"$ANYLINUX_TOOLS_DIR"/make-aur-package
4040

41+
echo "Installing basic packaging dependencies..."
42+
echo "---------------------------------------------------------------"
43+
pacman-key --init
44+
pacman -Syy --noconfirm archlinux-keyring
45+
pacman -Syu --noconfirm \
46+
base-devel \
47+
curl \
48+
git \
49+
libx11 \
50+
libxrandr \
51+
libxss \
52+
pulseaudio \
53+
pulseaudio-alsa \
54+
wget \
55+
xorg-server-xvfb \
56+
zsync
57+
4158
echo "CONTAINER IS READY!"

0 commit comments

Comments
 (0)