Date: Sunday, March 8, 2020 @ 07:13:28 Author: heftig Revision: 377058
3.36.0-1 Modified: gedit/trunk/PKGBUILD ----------+ PKGBUILD | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-03-08 07:11:49 UTC (rev 377057) +++ PKGBUILD 2020-03-08 07:13:28 UTC (rev 377058) @@ -2,18 +2,19 @@ # Contributor: Jan de Groot <[email protected]> pkgname=gedit -pkgver=3.34.1 +pkgver=3.36.0 pkgrel=1 pkgdesc="GNOME Text Editor" url="https://wiki.gnome.org/Apps/Gedit" arch=(x86_64) license=(GPL) -depends=(gtksourceview4 gsettings-desktop-schemas libpeas gspell python-gobject dconf) +depends=(gtksourceview4 gsettings-desktop-schemas libpeas gspell python-gobject + dconf tepl) makedepends=(yelp-tools vala gobject-introspection git gtk-doc meson) optdepends=('gedit-plugins: Additional features') conflicts=('gedit-code-assistance<=3.16.0+4+gd19b879-1') groups=(gnome) -_commit=a76f6ff074241b2c622e904fb2087b3fab3a9227 # tags/3.34.1^0 +_commit=4769552bface52c82cf061ed75e631e7c9e640f2 # tags/3.36.0^0 source=("git+https://gitlab.gnome.org/GNOME/gedit.git#commit=$_commit" "git+https://gitlab.gnome.org/GNOME/libgd.git") sha256sums=('SKIP' @@ -24,8 +25,15 @@ git describe --tags | sed 's/-/+/g' } +prepare() { + cd $pkgname + git submodule init + git submodule set-url subprojects/libgd "$srcdir/libgd" + git submodule update +} + build() { - arch-meson $pkgname build -D documentation=true + arch-meson $pkgname build -D gtk_doc=true ninja -C build }
