You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
762 B
39 lines
762 B
#!/bin/sh
|
|
# Copyright (c) 2018-2019 Petr Vorel <pvorel@suse.cz>
|
|
set -e
|
|
|
|
# workaround for missing oldstable-updates repository
|
|
# W: Failed to fetch http://deb.debian.org/debian/dists/oldstable-updates/main/binary-amd64/Packages
|
|
grep -v oldstable-updates /etc/apt/sources.list > /tmp/sources.list && mv /tmp/sources.list /etc/apt/sources.list
|
|
|
|
apt update
|
|
|
|
apt install -y --no-install-recommends \
|
|
acl-dev \
|
|
autoconf \
|
|
automake \
|
|
build-essential \
|
|
debhelper \
|
|
devscripts \
|
|
clang \
|
|
gcc \
|
|
libacl1 \
|
|
libacl1-dev \
|
|
libaio-dev \
|
|
libaio1 \
|
|
libcap-dev \
|
|
libcap2 \
|
|
libc6 \
|
|
libc6-dev \
|
|
libkeyutils-dev \
|
|
libkeyutils1 \
|
|
libmm-dev \
|
|
libnuma-dev \
|
|
libnuma1 \
|
|
libselinux1-dev \
|
|
libsepol1-dev \
|
|
libssl-dev \
|
|
libtirpc-dev \
|
|
linux-libc-dev \
|
|
lsb-release
|