Matt Housh
ace504387d
See the following for details: https://www.cve.org/CVERecord?id=CVE-2024-37535 https://gitlab.gnome.org/GNOME/vte/-/issues/2786
32 lines
979 B
Plaintext
32 lines
979 B
Plaintext
# Description: Virtual Terminal Emulator widget for GTK3/4
|
|
# URL: https://wiki.gnome.org/action/show/Apps/Terminal/VTE
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: gnutls gtk3 lz4
|
|
# Optional: gtk4 icu libsixel vala
|
|
|
|
name=vte3
|
|
version=0.76.3
|
|
release=1
|
|
source=(https://download.gnome.org/sources/vte/${version:0:4}/vte-${version}.tar.xz)
|
|
|
|
build() {
|
|
prt-get isinst gtk4 && PKGMK_VTE+=' -D gtk4=true' || PKGMK_VTE+=' -D gtk4=false'
|
|
prt-get isinst icu || PKGMK_VTE+=' -D icu=false'
|
|
prt-get isinst libsixel && PKGMK_VTE+=' -D sixel=true'
|
|
prt-get isinst vala || PKGMK_VTE+=' -D vapi=false'
|
|
|
|
meson setup build vte-$version ${PKGMK_VTE} \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_pie=true \
|
|
-D b_lto=false \
|
|
-D _systemd=false
|
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
}
|