summaryrefslogtreecommitdiffstats
path: root/src/ci/docker/scripts/cross-apt-packages.sh
blob: 2f8bf119424d0f3c7b3c54cfba29b11e81f61192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
  automake \
  bison \
  bzip2 \
  ca-certificates \
  cmake \
  curl \
  file \
  flex \
  g++ \
  gawk \
  gdb \
  git \
  gperf \
  help2man \
  libncurses-dev \
  libssl-dev \
  libtool-bin \
  make \
  ninja-build \
  patch \
  pkg-config \
  python3 \
  sudo \
  texinfo \
  unzip \
  wget \
  xz-utils