123456789101112131415161718192021222324252627 |
- # Maintainer: Jan de Groot <jgc@archlinux.org>
- pkgname=adwaita-icon-theme
- pkgver=3.14.1
- pkgrel=1
- pkgdesc="Adwaita icon theme"
- arch=(any)
- depends=('hicolor-icon-theme' 'gtk-update-icon-cache')
- makedepends=('intltool' 'icon-naming-utils')
- url="http://www.gnome.org"
- license=('GPL')
- groups=('gnome')
- install=adwaita-icon-theme.install
- options=('!emptydirs')
- source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
- sha256sums=('b776a7ad58c97f4c1ede316e44d8d054105429cb4e3a8ec46616a14b11df48ee')
- build() {
- cd "$pkgname-$pkgver"
- ./configure --prefix=/usr
- make
- }
- package() {
- cd "$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
- }
|