aboutsummaryrefslogtreecommitdiff
path: root/testing/gtk4/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-12-21 09:33:04 +0300
committerCem Keylan <cem@ckyln.com>2020-12-21 09:33:04 +0300
commit1f39e5fff960cc5e71043b7353724bf5cee0eb2b (patch)
tree2b181568b9ad71b282f94bb2e431444fc0d3bb27 /testing/gtk4/build
parent2be9f8da8d1945c763d07141fa33f2f84f5d3d2d (diff)
downloadrepository-1f39e5fff960cc5e71043b7353724bf5cee0eb2b.tar.gz
gtk4: add new package at 4.0.0 [TESTING]
Diffstat (limited to 'testing/gtk4/build')
-rwxr-xr-xtesting/gtk4/build27
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/gtk4/build b/testing/gtk4/build
new file mode 100755
index 00000000..f4bc3292
--- /dev/null
+++ b/testing/gtk4/build
@@ -0,0 +1,27 @@
+#!/bin/sh -e
+
+export DESTDIR=$1
+
+# Create gtk-doc subproject directory so that meson doesn't try to clone it
+# even when we disable it. We also don't really need sass, but there is no
+# option to disable it.
+mkdir -p subprojects/gtk-doc \
+ subprojects/libsass \
+ subprojects/sassc
+
+meson \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var\
+ -Dgtk_doc=false \
+ -Dwayland-backend=false \
+ -Dwin32-backend=false \
+ -Dintrospection=disabled \
+ -Dmedia-gstreamer=disabled \
+ -Ddemos=false \
+ -Dbuild-tests=false \
+ -Dbuild-examples=false \
+ . output
+
+ninja -C output
+ninja -C output install