Package Details: gnome-shell-extension-battery-status-git 4.r25.gf486cb7-2

Git Clone URL: https://aur.archlinux.org/gnome-shell-extension-battery-status-git.git (read-only, click to copy)
Package Base: gnome-shell-extension-battery-status-git
Description: Get information about your battery status
Upstream URL: https://github.com/atareao/battery-status
Licenses: MIT
Conflicts: gnome-shell-extension-battery-status
Provides: gnome-shell-extension-battery-status
Submitter: yochananmarqos
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 0
Popularity: 0.000000
First Submitted: 2022-02-05 03:22 (UTC)
Last Updated: 2024-03-25 19:00 (UTC)

Latest Comments

yochananmarqos commented on 2022-08-18 14:21 (UTC)

@bart: Fixed.

bart commented on 2022-08-18 11:45 (UTC)

This does not build anymore because the schema file has been renamed from battery-status.gschema.xml to es.atareao.battery-status.gschema.xml.

Following patch fixes this:

diff --git a/PKGBUILD b/PKGBUILD
index 865c7e5..ca5d953 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -35,7 +35,7 @@ package() {

   install -d "$pkgdir/usr/share/gnome-shell/extensions/$_uuid"
   bsdtar xvf "$_uuid.shell-extension.zip" -C "$pkgdir/usr/share/gnome-shell/extensions/$_uuid/"
-  install -Dm644 schemas/battery-status.gschema.xml -t "$pkgdir/usr/share/glib-2.0/schemas/"
+  install -Dm644 schemas/es.atareao.battery-status.gschema.xml -t "$pkgdir/usr/share/glib-2.0/schemas/"

   rm -rf "$pkgdir/usr/share/gnome-shell/extensions/$_uuid/schemas/"
 }