summaryrefslogtreecommitdiff
path: root/repo/vte3/vte3.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/vte3/vte3.xibuild')
-rw-r--r--repo/vte3/vte3.xibuild35
1 files changed, 35 insertions, 0 deletions
diff --git a/repo/vte3/vte3.xibuild b/repo/vte3/vte3.xibuild
new file mode 100644
index 0000000..9d490a1
--- /dev/null
+++ b/repo/vte3/vte3.xibuild
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+NAME="vte3"
+DESC="Virtual Terminal Emulator library"
+
+MAKEDEPS="bash gnutls gobject-introspection gperf gtk3 gtk2 icu intltool libxml2 linux-headers meson ncurses pango pcre2 vala"
+
+PKG_VER=0.68.0
+SOURCE="https://gitlab.gnome.org/GNOME/vte/-/archive/$PKG_VER/vte-$PKG_VER.tar.gz"
+
+ADDITIONAL="
+fix-W_EXITCODE.patch
+syscall.patch
+"
+
+prepare () {
+ apply_patches
+}
+
+build() {
+ meson --prefix=/usr \
+ -Ddocs=false \
+ -D_systemd=false \
+ . output
+ meson compile ${JOBS:+-j ${JOBS}} -C output
+}
+
+check() {
+ meson test --no-rebuild -v -C output
+}
+
+package() {
+ DESTDIR="$PKG_DEST" meson install --no-rebuild -C output
+}
+