Date: Monday, February 20, 2023 @ 19:18:57 Author: heftig Revision: 469295
1.50.13-1 Modified: pango/trunk/PKGBUILD ----------+ PKGBUILD | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-02-20 18:28:47 UTC (rev 469294) +++ PKGBUILD 2023-02-20 19:18:57 UTC (rev 469295) @@ -2,8 +2,11 @@ # Contributor: Jan de Groot <[email protected]> pkgbase=pango -pkgname=(pango pango-docs) -pkgver=1.50.12 +pkgname=( + pango + pango-docs +) +pkgver=1.50.13 pkgrel=1 epoch=1 pkgdesc="A library for layout and rendering of text" @@ -10,11 +13,23 @@ url="https://www.pango.org/" arch=(x86_64) license=(LGPL) -depends=(libthai cairo libxft harfbuzz fribidi) -makedepends=(gobject-introspection help2man git meson gi-docgen) -_commit=3d3f165e77178b630d7dc2b733e64af513c99f5f # tags/1.50.12^0 +depends=( + cairo + fribidi + harfbuzz + libthai + libxft +) +makedepends=( + gi-docgen + git + gobject-introspection + help2man + meson +) +_commit=5e912b951efe4976adaf328a561f2a26ec794095 # tags/1.50.13^0 source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit") -sha256sums=('SKIP') +b2sums=('SKIP') pkgver() { cd pango @@ -26,8 +41,11 @@ } build() { - arch-meson pango build \ + local meson_options=( -D gtk_doc=true + ) + + arch-meson pango build "${meson_options[@]}" meson compile -C build }
