summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9ce078c1266620a527c7a03168da9ed77827520e (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
# Maintainer: Adrián Pérez de Castro <aperez@igalia.com>
# Contributor: martinjlowm <martin {at} martinjlowm {dot} dk>

pkgname=zuki-themes-git
pkgver=r316.460cabb
pkgrel=1
pkgdesc="A selection of themes for GTK3, gnome-shell and more."
arch=(any)
url=https://github.com/lassekongo83/zuki-themes
license=(GPL3)
depends=(gtk-engine-murrine gtk-engines)
makedepends=(git meson ninja sassc)
conflicts=(zukitwo-themes zuki-themes)
provides=(zuki-themes)
optdepends=('gnome-themes-standard: Required for the GTK3 theme'
            'ttf-droid: Font family for the Gnome Shell theme')

source=("${pkgname}::git+${url}")
sha512sums=('SKIP')

pkgver () {
   	cd "${pkgname}"
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build () {
	rm -rf build
	arch-meson "${pkgname}" build
	ninja -C build
}

package () {
	DESTDIR="${pkgdir}" ninja -C build install
}