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

27 lines
460 B
Bash
Raw Normal View History

#!/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 \
tzdata \
lsb-release \
rsync \
bash \
curl \
2025-12-12 16:42:45 +01:00
make \
python3 \
2025-12-12 17:04:34 +01:00
python3-venv \
python3-pip \
ca-certificates \
xz-utils
rm -rf /var/lib/apt/lists/*
echo "[ubuntu/dependencies] Done."