summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b934a3994f5c1f5fb686aa5d16850b7a7e615f1e (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
# Maintainer Dimitris Kiziridis <ragouel at outlook dot com>
# Contributor: Maxime Gauduin <alucryd@archlinux.org>

pkgname=elementary-icon-theme-git
pkgver=r2379.a78e2a39
pkgrel=1
pkgdesc='Named, vector icons for elementary OS'
arch=('any')
url='https://github.com/elementary/icons'
license=('GPL3')
groups=('pantheon-unstable')
depends=('hicolor-icon-theme')
makedepends=('git' 'meson' 'inkscape' 'xorg-xcursorgen')
provides=('elementary-icon-theme')
conflicts=('elementary-icon-theme')
options=('!emptydirs')
source=("git+${url}.git")
sha256sums=('SKIP')

pkgver() {
  cd "${srcdir}/icons"
  echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}

prepare() {
  cd "${srcdir}/icons"
  if [[ -d build ]]; then
    rm -rf build
  fi
  mkdir build
}

build() {
  cd "${srcdir}/icons/build"
  arch-meson ../
  ninja
}

package() {
  cd "${srcdir}/icons/build"
  DESTDIR="${pkgdir}" ninja install
  rm "${pkgdir}"/.VolumeIcon*
}
# vim: ts=2 sw=2 et: