blob: 56c7d230344aafd711704c670cfd95c80c5bf66b (
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
|
# Maintainer: Pieter Goetschalckx <3.14.e.ter at gmail dot com>
pkgname=gnome-shell-extension-suspend-button-git
pkgver=r24.b04fe35
pkgrel=1
pkgdesc="Allows to modify the suspend/shutdown button in the status menu."
arch=('i686' 'x86_64')
url="https://github.com/laserb/gnome-shell-extension-suspend-button"
license=('GPL')
depends=('gnome-shell')
makedepends=('git')
install=gnome-shell-extension-suspend-button.install
source=("$pkgname::git+https://github.com/laserb/gnome-shell-extension-suspend-button")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$pkgname"
_uuid='suspend-button@laserb'
install -Dm644 "metadata.json" \
"${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}/metadata.json"
install -m644 "extension.js" \
"${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}/extension.js"
install -m644 "prefs.js" \
"${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}/prefs.js"
install -m644 "lib.js" \
"${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}/lib.js"
install -Dm644 "schemas/org.gnome.shell.extensions.suspend-button.gschema.xml" \
"${pkgdir}/usr/share/glib-2.0/schemas/org.gnome.shell.extensions.suspend-button.gschema.xml"
}
|