• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2# Copyright (c) 2018-2020 Petr Vorel <pvorel@suse.cz>
3set -ex
4
5# workaround for missing oldstable-updates repository
6# W: Failed to fetch http://deb.debian.org/debian/dists/oldstable-updates/main/binary-amd64/Packages
7grep -v oldstable-updates /etc/apt/sources.list > /tmp/sources.list && mv /tmp/sources.list /etc/apt/sources.list
8
9apt update
10
11apt="apt install -y --no-install-recommends"
12
13$apt \
14	acl-dev \
15	asciidoc \
16	asciidoctor \
17	autoconf \
18	automake \
19	build-essential \
20	debhelper \
21	devscripts \
22	clang \
23	gcc \
24	git \
25	libacl1 \
26	libacl1-dev \
27	libaio-dev \
28	libaio1 \
29	libcap-dev \
30	libcap2 \
31	libc6 \
32	libc6-dev \
33	libjson-perl \
34	libkeyutils-dev \
35	libkeyutils1 \
36	libmm-dev \
37	libmnl-dev \
38	libnuma-dev \
39	libnuma1 \
40	libselinux1-dev \
41	libsepol1-dev \
42	libssl-dev \
43	libtirpc-dev \
44	linux-libc-dev \
45	lsb-release \
46	pkg-config
47
48$apt ruby-asciidoctor-pdf || true
49
50df -hT
51