summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4d342cc962fe2a816b1b3b67ca10684099443c77 (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
# Maintainer: Maxime Gauduin <alucryd@gmail.dom>

pkgname=numix-bevel-icon-theme-git
pkgver=0.r10.5f1b191
pkgrel=2
pkgdesc='Bevel icon theme from the Numix project'
arch=('any')
url='http://numixproject.org/'
license=('GPL3')
depends=('numix-icon-theme-git')
makedepends=('git')
provides=('numix-bevel-icon-theme')
conflicts=('numix-bevel-icon-theme')
options=('!strip')
source=('numix-bevel-icon-theme::git+https://github.com/numixproject/numix-icon-theme-bevel.git')
sha256sums=('SKIP')

pkgver() {
  cd numix-bevel-icon-theme

  echo "0.r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}

package() {
  cd numix-bevel-icon-theme

  install -dm 755 "$pkgdir"/usr/share/icons
  cp -dr --no-preserve=ownership Numix-Bevel "$pkgdir"/usr/share/icons/
}

# vim: ts=2 sw=2 et: