blob: 7d07b4bc7f49a0cc7d5397fc91ff635b8e29f446 (
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.4
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=('7b2f8584f1b00575129c52b981f2cf894ac1c0ce853533c87a9cecc58c7d58fa')
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:
|