blob: b0679e0542b0409ccef86b19b61c7fecb65c1a99 (
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 proton dot me>
pkgname=jasper-gtk-theme-git
pkgver=r90.6e3ec69
pkgrel=1
pkgdesc="Jasper gtk theme for linux"
arch=('any')
url="https://github.com/vinceliuice/Jasper-gtk-theme"
license=('GPL-3.0-or-later')
makedepends=('git' 'sassc')
optdepends=('gtk-engine-murrine: GTK2 theme support'
'colloid-icon-theme: Recommended icon theme')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}" 'nephrite-gtk-theme')
options=('!strip')
install='jasper-theme.install'
source=('git+https://github.com/vinceliuice/Jasper-gtk-theme.git')
sha256sums=('SKIP')
pkgver() {
cd Jasper-gtk-theme
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd Jasper-gtk-theme
install -d "$pkgdir/usr/share/themes"
./install.sh -t all -d "$pkgdir/usr/share/themes/"
./install.sh -t all -s compact -d "$pkgdir/usr/share/themes/"
# Nord version
./install.sh -t all --tweaks nord -d "$pkgdir/usr/share/themes/"
./install.sh -t all -s compact --tweaks nord -d "$pkgdir/usr/share/themes/"
# Dracula version
./install.sh -t all --tweaks dracula -d "$pkgdir/usr/share/themes/"
./install.sh -t all -s compact --tweaks dracula -d "$pkgdir/usr/share/themes/"
}
|