summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7e8c506256f8757635fa45a81fa96592bd192b11 (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
# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>

pkgname=ex-impression-icon-theme-git
pkgver=r46.899ff7b8
pkgrel=1
pkgdesc='This icon theme got inspired on Mac OS icons and mimics those for the Linux OS'
arch=('any')
url='https://github.com/balasakthi88/EX-Impression'
license=('GPL3')
provides=("${pkgname%-*}" "${pkgname}")
conflicts=("${pkgname%-*}" "${pkgname}")
options=('!strip')
makedepends=('git')
source=("${pkgname%-git}::git+${url}")
sha256sums=('SKIP')

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

prepare() {
  cd "${pkgname%-git}"
  rm */LICENSE *.md
  rm */*.md
}

package() {
	cd "${pkgname%-git}"
  install -dm755 "${pkgdir}/usr/share/icons/"
  cp -drf --no-preserve='ownership' EX-* "${pkgdir}/usr/share/icons/"
}
# vim:set ts=2 sw=2 et: