Files
pkgmgr/scripts/installation/ubuntu/dependencies.sh

28 lines
470 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
echo "[ubuntu/dependencies] Installing Ubuntu build dependencies..."
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
debhelper \
dpkg-dev \
git \
gnupg \
tzdata \
lsb-release \
rsync \
bash \
curl \
make \
python3 \
python3-venv \
python3-pip \
ca-certificates \
xz-utils
rm -rf /var/lib/apt/lists/*
echo "[ubuntu/dependencies] Done."