* update pango to 1:1.54.0-1

This commit is contained in:
Alexander Baldeck 2024-07-21 12:18:27 +02:00
parent 29097a8ce8
commit 6223c7c9c8

View File

@ -7,7 +7,7 @@ pkgname=(
pango pango
pango-docs pango-docs
) )
pkgver=1.52.2 pkgver=1.54.0
pkgrel=1 pkgrel=1
epoch=1 epoch=1
pkgdesc="A library for layout and rendering of text" pkgdesc="A library for layout and rendering of text"
@ -16,25 +16,28 @@ arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
license=(LGPL-2.1-or-later) license=(LGPL-2.1-or-later)
depends=( depends=(
cairo cairo
fontconfig
freetype2
fribidi fribidi
glib2
glibc
harfbuzz harfbuzz
libsysprof-capture
libthai libthai
libx11
libxft libxft
libxrender
) )
makedepends=( makedepends=(
gi-docgen gi-docgen
git git
glib2-devel
gobject-introspection gobject-introspection
help2man help2man
meson meson
) )
source=("git+https://gitlab.gnome.org/GNOME/pango.git#tag=$pkgver") source=("git+https://gitlab.gnome.org/GNOME/pango.git#tag=$pkgver")
b2sums=('ba5b6814bad4f9834557bedc4341a0985fed5fa0150b423bbbc4e1765b1e2834a5d21b3da6e195f5a0a413fc44859fdd52e4112b220747653030085ee969b055') b2sums=('365a31b09d9e11eda15f79339fde4cd635cd4f24c7b80f883020c95ee27f7d4074495e74531c727ea1b4d4f89e32641003758e388c54a5473be00527526645e5')
pkgver() {
cd pango
git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
}
prepare() { prepare() {
cd pango cd pango
@ -42,7 +45,8 @@ prepare() {
build() { build() {
local meson_options=( local meson_options=(
-D gtk_doc=true -D documentation=true
-D sysprof=enabled
) )
arch-meson pango build "${meson_options[@]}" arch-meson pango build "${meson_options[@]}"