blob: 52e5c4bc6119280d35031a3bb5b1e30557832b56 (
plain)
1 # Description: Virtual Terminal Emulator widget for use with GTK3
2 # URL: https://wiki.gnome.org/action/show/Apps/Terminal/VTE
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: gnutls gtk3 libgmp libpcre2 util-linux
5
6 name=vte3
7 version=0.50.2
8 release=1
9 source=(https://download.gnome.org/sources/vte/${version%.*}/vte-$version.tar.xz
10 $name-790539.patch
11 $name-pty_memory_leak.patch
12 $name-790536.patch)
13
14 build() {
15 cd vte-$version
16
17 # https://bugzilla.gnome.org/show_bug.cgi?id=790539
18 # https://git.gnome.org/browse/vte/commit/?h=vte-0-50&id=1d200a63ac4e39035af35e80881aa4fdae5556c6
19 patch -p1 -i $SRC/$name-790539.patch
20
21 # pty: Fix memory leak
22 # https://git.gnome.org/browse/vte/commit/?h=vte-0-50&id=ddd6dc998d9842369ec20f8e83c380401a8aed02
23 patch -p1 -i $SRC/$name-pty_memory_leak.patch
24
25 # https://bugzilla.gnome.org/show_bug.cgi?id=790536
26 # https://git.gnome.org/browse/vte/commit/?h=vte-0-50&id=504db1b97f684778ee52f6e280a9e734936be20f
27 patch -p1 -i $SRC/$name-790536.patch
28
29 ./configure \
30 --prefix=/usr \
31 --libexecdir=/usr/lib/vte \
32 --disable-static \
33 --disable-gtk-doc \
34 --enable-vala=no
35
36 make
37 make DESTDIR=$PKG install
38
39 rm -r $PKG/usr/share/{gtk-doc,locale}
40 }
|