diff options
author | Pellegrino Prevete | 2023-07-02 09:45:30 +0200 |
---|---|---|
committer | Pellegrino Prevete | 2023-07-02 09:45:30 +0200 |
commit | 72b4c939c06b877527a8469dc22f02bf885398b2 (patch) | |
tree | 47b2cc0870c3c67f185e3e74f53944216841ec49 | |
parent | 4870534e385658f052b07beaffbb2dc93fa32649 (diff) | |
download | aur-72b4c939c06b877527a8469dc22f02bf885398b2.tar.gz |
update provides
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 11 insertions, 1 deletions
@@ -7,10 +7,12 @@ pkgbase = libgedit-gtksourceview-git license = LGPL2.1 makedepends = git makedepends = gobject-introspection + makedepends = gtk-doc makedepends = meson depends = gtk3 depends = libxml2 provides = libgedit-gtksourceview=299.0.3+5+gffb59486 + provides = libgedit-gtksourceview-300.so conflicts = libgedit-gtksourceview source = git+https://github.com/gedit-technology/libgedit-gtksourceview sha256sums = SKIP @@ -1,4 +1,5 @@ # Maintainer: Pellegrino Prevete (tallero) <pellegrinoprevete@gmail.com> +# Contributor: Mark Wagie (yochananmarqos) <mark.wagie@proton.me> _pkgname=libgedit-gtksourceview pkgname="${_pkgname}-git" @@ -17,9 +18,13 @@ depends=( makedepends=( 'git' 'gobject-introspection' + 'gtk-doc' 'meson' ) -provides=("${_pkgname}=${pkgver}") +provides=( + "${_pkgname}=${pkgver}" + "${_pkgname}-300.so" +) conflicts=("${_pkgname}") source=("git+${url}") sha256sums=('SKIP') @@ -35,6 +40,7 @@ build() { } check() { + export NO_AT_BRIDGE=1 xvfb-run -s '-screen 0 1920x1080x24 -nolisten local' \ meson test -C build --print-errorlogs } @@ -42,3 +48,5 @@ check() { package() { meson install -C build --destdir "${pkgdir}" } + +# vim:set sw=2 sts=-1 et: |