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
|
#!/usr/bin/env bash
source "$(dirname "$0")/../glib/dependencies/pacman"
PACKAGES+=(
# These are dependencies necessary for building WPE.
gnutls
icu
libxml2
ru
unifdef
zlib
# These are dependencies necessary for running tests.
# Note: ruby-json and ruby-highline are available in the AUR.
perl-cgi
python2
python2-gobject
python2-lxml
ruby
# These are dependencies necessary for building the jhbuild.
libpulse
libsrtp
libtheora
libvorbis
libvpx
libxkbcommon
luajit
mesa
mesa-libgl
opus
perl-xml-libxml
util-linux
v4l-utils
wayland
xorg-xrandr
# These are dependencies necessary for building Cog.
libportal
libportal-gtk4
xcb-util-cursor
)
|