summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Schendel2021-02-19 22:25:57 +0100
committerChristian Schendel2021-02-19 22:25:57 +0100
commitdb1c3c2660c8ac8a7cf6ec0943e88e156c89c58a (patch)
tree1843bd7c790c866806e74de95c1a6e51955a643f
parent883ed7f39986bfff42cf5a3ad9f75502ba8de0f1 (diff)
downloadaur-db1c3c2660c8ac8a7cf6ec0943e88e156c89c58a.tar.gz
gschema.xml: name differs from metadata.json
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD7
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8448bde5dd8e..1c8de2537d58 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = gnome-shell-extension-applications-overview-tooltip-git
pkgdesc = Shows a tooltip over applications icons on applications overview
pkgver = 10.r3.gf90ddba
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/RaphaelRochet/applications-overview-tooltip
install = gnome-shell-extension-applications-overview-tooltip.install
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index 49757b029ec4..c3f800cbba39 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Christian Schendel <doppelhelix at gmail dot com>
pkgname=gnome-shell-extension-applications-overview-tooltip-git
pkgver=10.r3.gf90ddba
-pkgrel=2
+pkgrel=3
pkgdesc="Shows a tooltip over applications icons on applications overview"
arch=(any)
url="https://github.com/RaphaelRochet/applications-overview-tooltip"
@@ -22,10 +22,11 @@ pkgver() {
package() {
cd "${srcdir}/${pkgname%-git}"
local uuid=$(grep -Po '(?<="uuid": ")[^"]*' metadata.json)
- local schema=$(grep -Po '(?<="settings-schema": ")[^"]*' metadata.json).gschema.xml
+ #local schema=$(grep -Po '(?<="settings-schema": ")[^"]*' metadata.json).gschema.xml
+ local schema=org.gnome.shell.extensions.appoverviewtooltip.gschema.xml
local destdir="$pkgdir/usr/share/gnome-shell/extensions/$uuid"
install -dm755 "$destdir"
- install -Dm644 "${srcdir}/${pkgname%-git}/schemas/org.gnome.shell.extensions.appoverviewtooltip.gschema.xml" \
+ install -Dm644 "${srcdir}/${pkgname%-git}/schemas/${schema}" \
"${pkgdir}/usr/share/glib-2.0/schemas/${schema}"
cp -r * "$destdir"