blob: 880a3475c0acfdaf972b02f2ff4a56ff5c8aa5a8 (
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
|
# Contributor: guddaff <guddaff@protonmail.com>
# Maintainer: guddaff <guddaff@protonmail.com>
pkgname=arc-icon-theme
pkgver=20161122
pkgrel=0
pkgdesc="Arc Icon Theme"
options="!check" #there are no checks
url="https://github.com/horst3180/arc-icon-theme"
arch="noarch"
makedepends="autoconf automake"
license="GPL-3.0-or-later"
depends="moka-icon-theme"
source="$pkgname-$pkgver.tar.gz::https://github.com/horst3180/arc-icon-theme/archive/refs/tags/$pkgver.tar.gz"
prepare() {
default_prepare
autoreconf -fi
}
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr
make
}
package() {
make install DESTDIR="$pkgdir"
}
sha512sums="5d0f1417358eb81994868949acefe146537d8f3cc2fd7f529f9e6ba9c264845e50962f94427bac1262a76d3ca98d05795819d7c4a6ecd3139b0b57a6e9fdfad1 arc-icon-theme-20161122.tar.gz"
|