blob: e363bd8ede7a059be3f6b254eb6decd07a88b8bd (
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
33
34
|
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=adwaita-icon-theme
pkgver=3.34.1
pkgrel=0
pkgdesc="Adwaita icon theme"
url="https://gitlab.gnome.org/GNOME/adwaita-icon-theme"
arch="all !s390x"
options="!check" # Icons only, no binaries.
license="LGPL-3.0-or-later OR CC-BY-SA-3.0"
depends="librsvg"
makedepends="intltool gtk+2.0 gtk+3.0 icon-naming-utils"
subpackages="$pkgname-dev"
source="https://download.gnome.org/sources/adwaita-icon-theme/${pkgver%.*}/adwaita-icon-theme-$pkgver.tar.xz"
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--datadir=/usr/share \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var
make
}
package() {
make DESTDIR="$pkgdir" install pkgconfigdir=/usr/lib/pkgconfig
}
sha512sums="fe771030109fc85f98b1ffe780c1ca03a0646c9647c5c6e8cf084f00822ab4931070932ce463f6302a6c6b7837a0d9aefa02f9265a5287625e2ec9c49e7fd00f adwaita-icon-theme-3.34.1.tar.xz"
|