12345678910111213141516171819202122232425262728293031323334353637 |
- # Contributor: Lukas Fleischer <lfleischer@archlinux.org>
- # Contributor: Jan de Groot <jgc@archlinux.org>
- pkgname=adwaita-icon-theme
- pkgver=3.22.0+1+g58cd459e
- pkgrel=1
- pkgdesc="GNOME standard icons"
- url="https://git.gnome.org/browse/adwaita-icon-theme"
- arch=(any)
- license=(LGPL3 CCPL:cc-by-sa)
- depends=(hicolor-icon-theme gtk-update-icon-cache librsvg)
- makedepends=(intltool git gtk3)
- groups=(gnome)
- _commit=58cd459e1fdba84f3c7e745636188750ad6d44c8 # gnome-3-22
- source=("git+https://git.gnome.org/browse/adwaita-icon-theme#commit=$_commit")
- sha256sums=('SKIP')
- pkgver() {
- cd $pkgname
- git describe --tags | sed 's/-/+/g'
- }
- prepare() {
- cd $pkgname
- autoreconf -fvi
- }
-
- build() {
- cd $pkgname
- ./configure --prefix=/usr
- make
- }
- package() {
- cd $pkgname
- make DESTDIR="$pkgdir" install
- }
|