Date: Tuesday, March 21, 2023 @ 23:44:39 Author: heftig Revision: 471757
1.36.0-1 Modified: libpeas/trunk/PKGBUILD ----------+ PKGBUILD | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-03-21 23:42:28 UTC (rev 471756) +++ PKGBUILD 2023-03-21 23:44:39 UTC (rev 471757) @@ -2,19 +2,30 @@ pkgbase=libpeas pkgname=(libpeas libpeas-docs) -pkgver=1.34.0 +pkgver=1.36.0 pkgrel=1 pkgdesc="A GObject plugins library" url="https://wiki.gnome.org/Projects/Libpeas" arch=(x86_64) license=(LGPL) -depends=(gtk3 gobject-introspection-runtime) -makedepends=(python-gobject glade gobject-introspection git meson vala gi-docgen) +depends=( + gobject-introspection-runtime + gtk3 +) +makedepends=( + gi-docgen + git + glade + gobject-introspection + meson + python-gobject + vala +) checkdepends=(xorg-server-xvfb) optdepends=('python-gobject: Python loader') -_commit=744e16bdada0eb79c37abac328cb4c3dc6dd42df # tags/libpeas-1.34.0^0 +_commit=7f245fa5158204621c3469756a951b68a651c4fe # tags/libpeas-1.36.0^0 source=("git+https://gitlab.gnome.org/GNOME/libpeas.git#commit=$_commit") -sha256sums=('SKIP') +b2sums=('SKIP') pkgver() { cd libpeas @@ -26,7 +37,12 @@ } build() { - arch-meson libpeas build -D vapi=true -D gtk_doc=true + local meson_options=( + -D gtk_doc=true + -D vapi=true + ) + + arch-meson libpeas build "${meson_options[@]}" meson compile -C build }
