* update vte3 to 0.76.0-2

This commit is contained in:
Alexander Baldeck 2024-04-08 10:30:33 +02:00
parent 28fe8717f4
commit fa8c641d8c

View File

@ -1,5 +1,6 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# Maintainer: Fabian Bornschein <fabiscafe@archlinux.org>
# Contributor: Ionut Biru <ibiru@archlinux.org>
pkgbase=vte3
@ -9,31 +10,45 @@ pkgname=(
vte4
vte-docs
)
pkgver=0.74.2
pkgrel=1
pkgver=0.76.0
pkgrel=2
pkgdesc="Virtual Terminal Emulator widget"
url="https://wiki.gnome.org/Apps/Terminal/VTE"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
license=(LGPL)
makedepends=(
license=(
LGPL-3.0-or-later
GPL-3.0-or-later
)
depends=(
cairo
fribidi
gcc-libs
gdk-pixbuf2
glib2
glibc
gnutls
icu
lz4
pango
pcre2
systemd
systemd-libs
)
makedepends=(
at-spi2-core
gi-docgen
git
gnutls
gobject-introspection
gperf
gtk3
gtk4
meson
pcre2
systemd
vala
)
options=(!lto)
_commit=3f66edbf598129bafde3baa91ccfb345056418c3 # tags/0.74.2^0
_commit=3c29bfef30c34afec4982ba5ec37f944cfacbba2 # tags/0.76.0^0
source=("git+https://gitlab.gnome.org/GNOME/vte.git#commit=$_commit")
b2sums=('SKIP')
b2sums=('9732a9261ae2a7b769e77e1a95da4b7b0b19532f0452f02135b8d650e0204ebaf8eb2956061c31369a7273a6732bd7e11351deab55940a0f9d6a72e22c0cf537')
pkgver() {
cd vte
@ -46,7 +61,6 @@ prepare() {
build() {
local meson_options=(
-D b_lto=false
-D docs=true
)
@ -70,7 +84,7 @@ _pick() {
package_vte-common() {
pkgdesc+=" (common files)"
depends=(sh)
depends=(glibc)
meson install -C build --destdir "$pkgdir"
@ -99,13 +113,9 @@ package_vte-common() {
package_vte3() {
pkgdesc+=" (GTK3)"
depends=(
cairo
fribidi
gnutls
depends+=(
at-spi2-core
gtk3
pcre2
systemd
vte-common
)
provides+=(libvte-2.91.so)
@ -115,13 +125,8 @@ package_vte3() {
package_vte4() {
pkgdesc+=" (GTK4)"
depends=(
cairo
fribidi
gnutls
depends+=(
gtk4
pcre2
systemd
vte-common
)
provides+=(libvte-2.91-gtk4.so)
@ -131,6 +136,7 @@ package_vte4() {
package_vte-docs() {
pkgdesc+=" (documentation)"
depends=()
mv docs/* "$pkgdir"
}