PKGBUILD 685 B

123456789101112131415161718192021222324252627
  1. # Maintainer: Jan de Groot <jgc@archlinux.org>
  2. pkgname=adwaita-icon-theme
  3. pkgver=3.14.1
  4. pkgrel=1
  5. pkgdesc="Adwaita icon theme"
  6. arch=(any)
  7. depends=('hicolor-icon-theme' 'gtk-update-icon-cache')
  8. makedepends=('intltool' 'icon-naming-utils')
  9. url="http://www.gnome.org"
  10. license=('GPL')
  11. groups=('gnome')
  12. install=adwaita-icon-theme.install
  13. options=('!emptydirs')
  14. source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
  15. sha256sums=('b776a7ad58c97f4c1ede316e44d8d054105429cb4e3a8ec46616a14b11df48ee')
  16. build() {
  17. cd "$pkgname-$pkgver"
  18. ./configure --prefix=/usr
  19. make
  20. }
  21. package() {
  22. cd "$pkgname-$pkgver"
  23. make DESTDIR="$pkgdir" install
  24. }