blob: 10108c67ab4d7542d6a8c1e0bbf2622d9098ddee (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Maintainer: Christian Schendel <doppelhelix at gmail dot com>
pkgname=gnome-shell-extension-useless-gaps-git
pkgver=8.r28.g1d48100
pkgrel=2
pkgdesc="Useless Gaps is a GNOME Shell Extension which for aesthetic purposes adds 'useless gaps' around windows."
arch=(any)
url="https://github.com/mipmip/gnome-shell-extensions-useless-gaps"
install=${pkgname%-git}.install
license=(
'GPL-3.0-or-later'
)
depends=(
'gnome-shell>=1:45'
)
makedepends=(
'git'
'glib2'
'gettext'
)
conflicts=("${pkgname%-git}")
provides=(${pkgname%-git})
source=("${pkgname%-git}::git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname%-git}"
# support repositories that start without a tag but get tagged later on
( set -o pipefail
git describe --long 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cd "${srcdir}/${pkgname%-git}"
mkdir build
gnome-extensions pack src \
--force \
--podir="../po" \
--extra-source="ui.js" \
--extra-source="../LICENSE" \
--extra-source="../CHANGELOG.md" \
--out-dir=build
}
package() {
cd "${srcdir}/${pkgname%-git}/src"
local uuid=$(grep -Po '(?<="uuid": ")[^"]*' metadata.json)
local schema=$(grep -Po '(?<="settings-schema": ")[^"]*' metadata.json).gschema.xml
local destdir="${pkgdir}/usr/share/gnome-shell/extensions/${uuid}"
cd "${srcdir}/${pkgname%-git}/build"
bsdtar -xf "${srcdir}/${pkgname%-git}/build/${uuid}.shell-extension.zip" \
-C "${srcdir}/${pkgname%-git}/build"
rm "${srcdir}/${pkgname%-git}/build/${uuid}.shell-extension.zip"
install -dm755 "${destdir}"
cp -r * "${destdir}"
install -Dm644 "schemas/${schema}" \
"${pkgdir}/usr/share/glib-2.0/schemas/${schema}"
# rebuild compiled GSettings schemas if missing
if [[ ! -f "${destdir}/schemas/gschemas.compiled" ]]; then
glib-compile-schemas "${destdir}/schemas"
fi
}
|