diff options
author | davidovski <david@davidovski.xyz> | 2022-06-15 20:02:02 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-15 20:02:02 +0100 |
commit | d2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch) | |
tree | 684a17eebf446aa1adab1097616f1882c8d51568 /repo/vte3/vte3.xibuild | |
parent | d1fc3393cca72e8e432f827f7624e38734fad6dc (diff) |
added deps for qemu
Diffstat (limited to 'repo/vte3/vte3.xibuild')
-rw-r--r-- | repo/vte3/vte3.xibuild | 35 |
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 +} + |