It seems that, at the moment, the AUR build script is outdated and does not properly install the extension in its current form, as files are missing from the resulting package.
I've managed to fix it; below is my patch:
diff --git a/PKGBUILD b/PKGBUILD
index 8e15d7d..a5736bd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
#Packaged by ryanvade
pkgname=gnome-shell-extension-hibernate-status-git
-pkgver=r11.e358c28
+pkgver=r46.6afc7c6
pkgrel=1
pkgdesc="Gnome Shell extension that adds a hibernate/hybrid suspend button in Status menu."
arch=('any')
@@ -29,4 +29,9 @@ package() {
"${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}/extension.js"
install -m644 "confirmDialog.js" \
"${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}/confirmDialog.js"
+ install -m644 "prefs.js" \
+ "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}/prefs.js"
+ glib-compile-schemas "schemas"
+ install -Dm644 "schemas/gschemas.compiled" \
+ "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}/schemas/gschemas.compiled"
}
Pinned Comments