Lines Matching +full:python3 +full:- +full:dev
2 set -o errexit
3 set -o xtrace
9 dpkg --add-architecture $arch
12 apt-get install -y \
13 ca-certificates
15 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list
16 echo 'deb https://deb.debian.org/debian buster-backports main' >/etc/apt/sources.list.d/backports.l…
18 apt-get update
23 Pin: release a=buster-backports
24 Pin-Priority: 500
27 apt-get dist-upgrade -y
29 apt-get install -y --no-remove \
30 build-essential \
31 docbook-xsl \
32 libatomic-ops-dev \
33 libcairo2-dev \
34 libcunit1-dev \
35 libpciaccess-dev \
37 ninja-build \
38 pkg-config \
39 python3 \
40 python3-pip \
41 python3-wheel \
42 python3-setuptools \
43 python3-docutils \
47 cross_file=/cross_file-$arch.txt
49 # Cross-build libdrm deps
50 apt-get install -y --no-remove \
51 libcairo2-dev:$arch \
52 libpciaccess-dev:$arch \
53 crossbuild-essential-$arch
56 /usr/share/meson/debcrossgen --arch $arch -o $cross_file
60 sed -i "s|cpu_family = 'i686'|cpu_family = 'x86'|g" $cross_file