summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ce1e731273629a612b3d6f495eb4d7e20941f16d (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
# Maintainer: DDoSolitary <DDoSolitary@gmail.com>
pkgname=konsole-tomorrow-theme-git
pkgdesc="Tomorrow color theme for Konsole"
pkgver=r1.6f43a05
pkgrel=1
arch=(any)
url=https://github.com/dram/konsole-tomorrow-theme
license=(MIT)
source=($pkgname::git+https://github.com/dram/konsole-tomorrow-theme)
md5sums=(SKIP)
depends=(konsole)
makedepends=(git)
conficts=(konsole-tomorrow-theme)
provides=(konsole-tomorrow-theme)

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

package() {
	cd $pkgname
	for i in *.colorscheme; do
		install -Dm644 "$i" "$pkgdir/usr/share/konsole/$i"
	done
}