blob: b88b14b049f1c11702a587d986d6a7d902e9592c (
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
|
# Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=gnome-shell-extension-gnome-ui-tune-git
pkgver=1.5.0.r3.g9d75205
pkgrel=2
pkgdesc="Tunes the overview UI of GNOME 40"
arch=('any')
url="https://github.com/axxapy/gnome-ui-tune"
license=('GPL3')
depends=('gnome-shell')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/axxapy/gnome-ui-tune.git')
sha256sums=('SKIP')
pkgver() {
cd $srcdir/gnome-ui-tune
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd $srcdir/gnome-ui-tune
make gettext
make dist
}
package() {
cd $srcdir/gnome-ui-tune
_uuid='gnome-ui-tune@itstime.tech'
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/org.gnome.shell.extensions.gnome-ui-tune.gschema.xml -t \
"$pkgdir/usr/share/glib-2.0/schemas"
rm -rf "$pkgdir/usr/share/gnome-shell/extensions/$_uuid/schemas/"
}
|