summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ad1d0d73521fff5cd4a519b71307d8506f0ac858 (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
# Maintainer: Icaro Perseo <icaroperseo[at]protonmail[dot]com>
# Contributor: FadeMind <fademind@gmail.com>

pkgname=papirus-plasma-theme
_commit=b26b93e # 7 digits
pkgver=20161203
pkgrel=1
pkgdesc="Papirus plasma theme for KDE"
url="https://github.com/icaroperseo/${pkgname}"
arch=('any')
license=('GPL')
depends=('plasma-desktop')
makedepends=('git' 'make')
conflicts=('papirus-plasma-theme-git')
options=('!strip')
install="${pkgname}.install"
source=("${pkgname}::git+${url}.git#commit=${_commit}")
sha256sums=('SKIP')

pkgver() {
  cd ${pkgname}
  git log -1 --format="%cd" --date=short | tr -d '-'
}

package() {
  make -C "${pkgname}" install DESTDIR="$pkgdir"
}

# vim:set ts=2 sw=2 cc=80 et: