summaryrefslogtreecommitdiff
path: root/scripts/0000-prepare-os.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/0000-prepare-os.sh')
-rwxr-xr-xscripts/0000-prepare-os.sh25
1 files changed, 16 insertions, 9 deletions
diff --git a/scripts/0000-prepare-os.sh b/scripts/0000-prepare-os.sh
index 33b0deb..a2039ad 100755
--- a/scripts/0000-prepare-os.sh
+++ b/scripts/0000-prepare-os.sh
@@ -2,14 +2,21 @@
set -e
-pacman --noconfirm -Syu
+export DEBIAN_FRONTEND=noninteractive
-pacman --noconfirm --needed -S \
- base-devel \
- libelf \
- libmpc \
- zlib
+apt-get update
-pacman --noconfirm --needed --asdeps -S \
- gmp \
- mpfr
+apt-get install -y --no-install-recommends \
+ build-essential \
+ bison \
+ curl \
+ ca-certificates \
+ flex \
+ gawk \
+ libtool \
+ patch \
+ texinfo \
+ wget \
+ xz-utils
+
+rm -rf /var/lib/apt/lists/*