summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d56b35eec427e3bf44063d574598ba1b9b237d46 (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
# Maintainer: Ariel AxionL <axionl@aosc.io>

pkgname=('zafiro-icon-theme')
pkgver=1.3
pkgrel=3
pkgdesc="A icon pack flat with light and dark colors."
arch=('any')
url="https://github.com/zayronxio/Zafiro-icons"
license=('GPL3')
source=("https://github.com/zayronxio/Zafiro-icons/archive/$pkgver.tar.gz")

sha256sums=('d4e81453d050ae07b157c65e388e748639a711afc1a6d1b033bdfdd90230ecb7')

package() {
  install -dm 755 $pkgdir/usr/share/icons

  dir=$srcdir/Zafiro-icons-$pkgver/
  darkdir=$dir/Dark
  lightdir=$dir/Light

  install -Dm644 $dir/LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE

  cp -dr --no-preserve='ownership' $lightdir $pkgdir/usr/share/icons/zafiro
  cp -dr --no-preserve='ownership' $darkdir $pkgdir/usr/share/icons/zafiro-dark
}

# vim: ts=2 sw=2 et: