summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Schendel2023-06-20 21:16:30 +0200
committerChristian Schendel2023-06-20 21:16:30 +0200
commit6a20a7ac244e22705ff10324feb4c84d230fd413 (patch)
treefbd85deb79d0d33728844c856b5209278953e667
parent8dcad85f1204d6b717ac31c8155b59e1297b16a7 (diff)
downloadaur-6a20a7ac244e22705ff10324feb4c84d230fd413.tar.gz
Upstream: remove .gschema.xml
modified: .SRCINFO modified: PKGBUILD
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 2 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index eb7b00b016f8..010d71a5930d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = gnome-shell-extension-peek-top-bar-on-fullscreen-git
pkgdesc = Gnome Extension that triggers top panel to show up on full screen apps when cursor hovers the top edge of the screen
- pkgver = r22.7e765ff
+ pkgver = r29.50b3abb
pkgrel = 1
url = https://github.com/marcinjahn/gnome-peek-top-bar-on-fullscreen-extension
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index b7bf7b88fb7c..074c8275d8b9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Christian Schendel (doppelhelix@gmail.com)
pkgname=gnome-shell-extension-peek-top-bar-on-fullscreen-git
-pkgver=r22.7e765ff
+pkgver=r29.50b3abb
pkgrel=1
pkgdesc="Gnome Extension that triggers top panel to show up on full screen apps when cursor hovers the top edge of the screen"
arch=('any')
@@ -37,13 +37,10 @@ build() {
package() {
cd "${srcdir}/${pkgname%-git}/dist"
local uuid=$(grep -Po '(?<="uuid": ")[^"]*' metadata.json)
- local schema=org.gnome.shell.extensions.quicksettings-audio-devices-renamer.gschema.xml
local destdir="${pkgdir}/usr/share/gnome-shell/extensions/${uuid}"
install -dm755 "${destdir}"
find . -regextype posix-egrep -regex ".*\.(js|json|compiled)$" -exec\
install -Dm 644 {} ${destdir}/{} \;
- install -Dm644 "${srcdir}/${pkgname%-git}/dist/schemas/${schema}" \
- "${pkgdir}/usr/share/glib-2.0/schemas/${schema}"
install -Dm644 "${srcdir}/${pkgname%-git}/LICENSE" -t "$pkgdir/usr/share/licenses/${pkgname%-git}"
}