-
-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathdebian.trixie-system.deps.sh
More file actions
executable file
·62 lines (56 loc) · 1.81 KB
/
Copy pathdebian.trixie-system.deps.sh
File metadata and controls
executable file
·62 lines (56 loc) · 1.81 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash -eux
source ci/common.setup.sh
# See debian-builds.yml for packages
# (those are the specific compiler versions)
# Mainly this variable is neede because one needs to do
# apt install gcc-N g++-N to get g++-N,
# but only clang-M as clang++-M is not a package
export CLANG_VERSION=19
# libsdl2-dev libsdl2-2.0-0
$SUDO apt-get update -qq
$SUDO apt-get install -qq --force-yes \
${PACKAGES:=} \
build-essential binutils cmake dpkg-dev lsb-release \
libasound2-dev \
ninja-build \
clang-$CLANG_VERSION lld-$CLANG_VERSION libclang-$CLANG_VERSION-dev llvm-$CLANG_VERSION-dev \
libfftw3-dev \
libsuil-dev liblilv-dev lv2-dev \
libdrm-dev libgbm-dev \
libdbus-1-dev \
libx11-dev libxext-dev libxcomposite-dev libxrandr-dev \
qt6-base-dev qt6-base-dev-tools qt6-base-private-dev \
qt6-declarative-dev qt6-declarative-dev-tools qt6-declarative-private-dev \
qt6-scxml-dev qt6-svg-dev qt6-connectivity-dev \
qt6-websockets-dev \
qt6-serialport-dev \
qt6-shadertools-dev \
libbluetooth-dev \
libglu1-mesa-dev libglu1-mesa libgles2-mesa-dev \
libavahi-compat-libdnssd-dev libsamplerate0-dev \
portaudio19-dev \
libpipewire-0.3-dev \
libavcodec-dev libavdevice-dev libavutil-dev libavfilter-dev libavformat-dev libswresample-dev \
libfmt-dev \
libspdlog-dev \
librubberband-dev \
libsamplerate-dev \
libsndfile-dev \
libre2-dev \
librapidfuzz-cpp-dev \
libsnappy-dev \
libboost-dev \
libmagicenum-dev \
libcoap3-dev \
libhdf5-dev \
libonnxruntime-dev \
faust \
libgps-dev \
libsdl2-dev \
glslang-dev glslang-tools \
libzita-alsa-pcmi-dev \
libvst3sdk-dev \
puredata-dev \
libpd-dev \
libzstd-dev
source ci/common.deps.sh LINUX