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
|
#!/usr/bin/env bash
source "$(dirname "$0")/../glib/dependencies/apt"
PACKAGES+=(
# These are dependencies necessary for building WPE.
g++
gcc
libatk-bridge2.0-dev
libcairo2-dev
libgbm-dev
libgnutls28-dev
libharfbuzz-dev
libicu-dev
libxml2-dev
pkg-config
qtbase5-dev
qtbase5-private-dev
qtdeclarative5-dev
unifdef
wayland-protocols
zlib1g-dev
$(aptIfExists libopenxr-dev)
# These are dependencies necessary for running tests.
python3-psutil
# These are dependencies necessary for building the jhbuild.
libegl-mesa0
libmount-dev
libopus-dev
libpulse-dev
libsrtp2-dev
libtheora-dev
libvorbis-dev
libvpx-dev
libxcb-glx0-dev
libxcb-xkb-dev
libxkbcommon-dev
libxrandr-dev
# These are dependencies necessary for building Cog.
libxcb-cursor-dev
$(aptIfExists libportal-dev)
$(aptIfExists libportal-gtk4-dev)
)
|