blob: 6cec06c619cd68f856e852f939cceea216ee6c48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# # Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>
# Contributor: ryanvade
pkgname=gnome-shell-extension-hibernate-status-git
pkgver=1.9.r1.gc14c68d
pkgrel=2
pkgdesc="GNOME Shell extension that adds a hibernate/hybrid suspend button in Status menu."
arch=('any')
url="https://github.com/arelange/gnome-shell-extension-hibernate-status"
license=('GPL')
depends=('gnome-shell')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/arelange/gnome-shell-extension-hibernate-status.git')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/${pkgname%-git}"
# Extension won't detect compiled schemas in /usr/share/glib-2.0/schemas
glib-compile-schemas schemas
}
package() {
_uuid='hibernate-status@dromi'
cd "$srcdir/${pkgname%-git}"
install -Dm644 schemas/*.xml -t "$pkgdir/usr/share/glib-2.0/schemas"
install -Dm644 schemas/*.{compiled,xml} -t \
"$pkgdir/usr/share/gnome-shell/extensions/$_uuid/schemas"
install -m644 *.js *.json -t "$pkgdir/usr/share/gnome-shell/extensions/$_uuid"
}
|