blob: 15f746cd409001b50b9c20756a6cce9025c0baa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Maintainer: Davi da Silva Böger <dsboger@gmail.com>
# Contributor: Manuel Hüsers <manuel.huesers@uni-ol.de>
# Contributor: Fernando Fernandez <fernando@softwareperonista.com.ar>
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Jason Edson <jaysonedson@gmail.com>
pkgbase='vte3-notification'
pkgname=("${pkgbase}" 'vte-notification-common')
pkgver=0.62.3
pkgrel=2
pkgdesc='Virtual Terminal Emulator widget for use with GTK3 with Fedora patches'
arch=('i686' 'x86_64')
url='https://wiki.gnome.org/Apps/Terminal/VTE'
license=('LGPL')
depends=('fribidi'
'gnutls'
'gtk3'
'intltool'
'pcre2'
'systemd-libs')
makedepends=('git'
'gobject-introspection'
'gtk-doc'
'meson'
'vala'
'gperf')
options=('!emptydirs')
# Fedora patches: https://pkgs.fedoraproject.org/cgit/rpms/vte291.git/tree/
_frepourl='https://src.fedoraproject.org/rpms/vte291'
_frepobranch='f34'
_fpatchfile100='vte291-cntnr-precmd-preexec-scroll.patch'
_fpatchfile101='vte291-gcc11.patch'
_fpatchfile000='0001-Revert-widget-Limit-select-all-to-the-writable-regio.patch'
_fcommit='03ce959c3bbba97cd9a0c50fa0d6037d695eaf74'
# VTE source ref
_vtetag=${pkgver}
source=(
"git+https://git.gnome.org/browse/vte#tag=$_vtetag"
"${_fpatchfile100}-${_fcommit}::${_frepourl}/raw/${_fcommit}/f/${_fpatchfile100}"
"${_fpatchfile101}-${_fcommit}::${_frepourl}/raw/${_fcommit}/f/${_fpatchfile101}"
"${_fpatchfile000}-${_fcommit}::${_frepourl}/raw/${_fcommit}/f/${_fpatchfile000}"
)
sha256sums=('SKIP'
'46cdbbf67dcd41c1a4d3c93c50c08ce2f0f58d0fa10d3247bc18a1015c21c1ea'
'7615f23c0fdf723c3ad5545b11c4e532d392c8ff1034468e33e85dd66a1d9fd3'
'25dee260b62c310ca00f8ac94b27c86c3d1bcf9dc697ec47e2515079e7ee1310')
prepare () {
cd "vte"
patch -p1 -i "../${_fpatchfile000}-${_fcommit}"
patch -p1 -i "../${_fpatchfile100}-${_fcommit}"
patch -p1 -i "../${_fpatchfile101}-${_fcommit}"
}
build() {
arch-meson vte build \
-D b_lto=false \
-D docs=true
meson compile -C build
}
_pick() {
local p="$1" f d; shift
for f; do
d="$srcdir/$p/${f#$pkgdir/}"
mkdir -p "$(dirname "$d")"
mv "$f" "$d"
rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
done
}
package_vte3-notification(){
depends+=('vte-notification-common')
provides=("vte3=${pkgver}")
conflicts=('vte3')
DESTDIR="${pkgdir}" meson install -C build
_pick vte-common "$pkgdir"/etc/profile.d
_pick vte-common "$pkgdir"/usr/lib/{systemd,vte-urlencode-cwd}
}
package_vte-notification-common() {
depends=('sh')
pkgdesc='Common files used by vte and vte3'
arch=('any')
provides=("vte-common=${pkgver}")
conflicts=('vte-common')
mv vte-common/* "$pkgdir"
}
|