123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
- # Contributor: Lukas Fleischer <lfleischer@archlinux.org>
- # Contributor: Jan de Groot <jgc@archlinux.org>
- pkgname=adwaita-icon-theme
- pkgver=42.0
- pkgrel=1
- pkgdesc="GNOME standard icons"
- url="https://gitlab.gnome.org/GNOME/adwaita-icon-theme"
- arch=(any)
- license=(LGPL3 CCPL:by-sa)
- depends=(hicolor-icon-theme gtk-update-icon-cache librsvg)
- makedepends=(git gtk3)
- _commit=1095485b06702dd0d2b232c5896e3e0d7340ad51 # tags/42.0^0
- source=("git+https://gitlab.gnome.org/GNOME/adwaita-icon-theme.git#commit=$_commit")
- sha256sums=('SKIP')
- pkgver() {
- cd $pkgname
- git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
- }
- prepare() {
- cd $pkgname
- autoreconf -fvi
- }
-
- build() {
- cd $pkgname
- ./configure --prefix=/usr
- make
- }
- check() {
- cd $pkgname
- make check
- }
- package() {
- cd $pkgname
- make DESTDIR="$pkgdir" install
- }
|