mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
ci: Use libadwaita from git
This commit is contained in:
parent
fc0358ef01
commit
aafebf0dfb
2 changed files with 34 additions and 3 deletions
26
build-aux/install_deps.sh
Executable file
26
build-aux/install_deps.sh
Executable file
|
@ -0,0 +1,26 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
echo "===== Install GTK ====="
|
||||
git clone --depth=1 https://gitlab.gnome.org/GNOME/gtk.git
|
||||
cd gtk
|
||||
meson setup builddir \
|
||||
--prefix=/usr \
|
||||
-Dgtk_doc=true \
|
||||
-Ddemos=false \
|
||||
-Dbuild-examples=false \
|
||||
-Dbuild-tests=false \
|
||||
-Dbuild-testsuite=false
|
||||
ninja -C builddir install
|
||||
cd -
|
||||
rm -rf gtk
|
||||
|
||||
echo "===== Install libadwaita ====="
|
||||
git clone --depth=1 https://gitlab.gnome.org/GNOME/libadwaita.git
|
||||
cd libadwaita
|
||||
meson builddir \
|
||||
--prefix=/usr
|
||||
ninja -C builddir install
|
||||
cd -
|
||||
rm -rf libadwaita
|
Loading…
Add table
Add a link
Reference in a new issue