Files
rkt/scripts/install-deps-debian-sid.sh
Jonathan Boulle 265a035099 scripts: add gpg to Debian dependencies
This is required for the default build and is
included in the Fedora ones.
2016-11-02 18:47:18 +01:00

10 lines
351 B
Bash
Executable File

#!/bin/bash
set -e
DEBIAN_SID_DEPS="ca-certificates gcc libc6-dev gpg make automake wget git golang-go coreutils cpio squashfs-tools realpath autoconf file xz-utils patch bc locales libacl1-dev libssl-dev libtspi-dev libsystemd-dev"
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y --no-install-recommends ${DEBIAN_SID_DEPS}