summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a3d954a9bdab4cdba4795a0c82e1a3e0f61b204f (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
# Maintainer: timescam <rex.ky.ng at gmail dot com>

pkgname=pop-shell-theme-git
_pkgname=gnome-shell-theme
pkgver="r98.21a1337"
pkgrel=2
pkgdesc="This is the GNOME Shell theme that goes along with the Pop GTK Theme."
arch=("any")
url="https://github.com/pop-os/gnome-shell-theme"
license=('GPL2' 'CCPL')
depends=(
	"gnome-shell>=3.18.3"
	"pop-gtk-theme-git"
	"gtk3>=3.18.9"
	"gtk2>=2.24.30"
	"gdk-pixbuf2>=2.24.30"
	"gtk-engine-murrine>=0.98.1"
	"glib2"
)
makedepends=(
	"inkscape"
	"optipng"
	"libsass>=3.3.6"
	"sassc>=3.3.2"
	"git"
	"parallel"
)
optdepends=(
	"gnome-flashback"
	"ttf-fira-sans: Recommended font for window titles and interface"
	"ttf-fira-mono: Recommended monospace font"
	"ttf-roboto-slab: Recommended font for documents"
	"pop-gtk-theme-git: Recommended gtk theme"
	"pop-icon-theme-git: Recommended icon theme"
)
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("git+https://github.com/pop-os/gnome-shell-theme.git")
sha256sums=("SKIP")

build() {
	cd "${_pkgname}"                                                             
	make clean
	make
}

package() {
	cd "${_pkgname}"                                                             
	make DESTDIR="${pkgdir}" install
}

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