blob: eeec8cfc5cb3ab2df7721499bfd7c1494f88d623 (
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
|
# 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.58.0
pkgrel=1
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=('gtk3' 'pcre2' 'gnutls')
makedepends=('git' 'intltool' 'gobject-introspection' 'gtk-doc' 'meson' 'pango' 'vala' 'gperf' 'glade')
options=('!emptydirs')
# Fedora patches: https://pkgs.fedoraproject.org/cgit/rpms/vte291.git/tree/
_frepourl='https://src.fedoraproject.org/rpms/vte291'
_frepobranch='f30'
_fpatchfile='vte291-cntnr-precmd-preexec-scroll.patch'
_fcommit='b067afd77f6dbc789b9844dbe4b455ed77540464'
# VTE source ref
_vtetag=${pkgver}
source=(
"git+https://git.gnome.org/browse/vte#tag=$_vtetag"
"${_fpatchfile}-${_fcommit}::${_frepourl}/raw/${_fcommit}/f/${_fpatchfile}"
)
sha256sums=('SKIP'
'9e2f27aad738d11226161f066c0eefc831a3aa1ec6f043d53104382a8e752d2d')
prepare () {
cd "vte"
patch -p1 -i "../${_fpatchfile}-${_fcommit}"
}
build() {
arch-meson vte build -D docs=true
ninja -C build
}
package_vte3-notification(){
depends+=('vte-notification-common')
provides=("vte3=${pkgver}")
conflicts=('vte3')
DESTDIR="${pkgdir}" meson install -C build
mv "$pkgdir/etc/profile.d/vte.sh" "$srcdir"
}
package_vte-notification-common() {
depends=('sh')
pkgdesc='Common files used by vte and vte3'
arch=('any')
provides=("vte-common=${pkgver}")
conflicts=('vte-common')
install -Dt "$pkgdir/etc/profile.d" -m644 vte.sh
}
|