blob: d33ff84eb6feeea17dc2bcc7185cb6397b3ae9dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Ariel AxionL <axionl@aosc.io>
pkgname=('zafiro-icon-theme')
pkgver=0.2
pkgrel=1
pkgdesc="A icon pack flat with light colors."
arch=('any')
url="https://github.com/zayronxio/Zafiro-icons"
license=('Artistic2.0')
source=("https://github.com/zayronxio/Zafiro-icons/archive/v$pkgver.tar.gz")
sha256sums=('71e9b88ffaa82158f5b705b25ea6e23cb8746c5d5076a537dfa6af9763328065')
package() {
install -dm 755 $pkgdir/usr/share/icons
dir=$srcdir/Zafiro-icons-$pkgver
install -Dm644 $dir/LICENSE.md $pkgdir/usr/share/license/$pkgname/LICENSE
cp -dr --no-preserve='ownership' $dir $pkgdir/usr/share/icons/$pkgname
}
# vim: ts=2 sw=2 et:
|