blob: ded8df6c1be129d19526dcb1c80f2f53d9daf07b (
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
|
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=numix-icon-theme-circle
pkgver=19.09.20
pkgrel=0
pkgdesc="Official icon theme from the Numix project"
url="https://github.com/numixproject/numix-icon-theme-circle"
arch="noarch"
license="GPL-3.0-only"
depends="numix-icon-theme"
subpackages="$pkgname-light"
source="$pkgname-$pkgver.tar.gz::https://github.com/numixproject/numix-icon-theme-circle/archive/$pkgver.tar.gz"
options="!check" # No code so no tests
package() {
mkdir -p "$pkgdir"/usr/share/icons
mv "$builddir"/Numix-Circle "$pkgdir"/usr/share/icons/
}
light() {
pkgdesc="$pkgdesc (Light version)"
mkdir -p "$subpkgdir"/usr/share/icons
mv "$builddir"/Numix-Circle-Light "$subpkgdir"/usr/share/icons/
}
sha512sums="bc0e80953e646c305d8af9f2360389850f7f67b5bfc35501c137f07dbb99db146e4de6e2afaa711b8eafe83315ab5f392ce1276bd54a431516c21171da20a9ff numix-icon-theme-circle-19.09.20.tar.gz"
|