PKGBUILD 802 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Contributor: Lukas Fleischer <lfleischer@archlinux.org>
  2. # Contributor: Jan de Groot <jgc@archlinux.org>
  3. pkgname=adwaita-icon-theme
  4. pkgver=3.22.0+1+g58cd459e
  5. pkgrel=1
  6. pkgdesc="GNOME standard icons"
  7. url="https://git.gnome.org/browse/adwaita-icon-theme"
  8. arch=(any)
  9. license=(LGPL3 CCPL:cc-by-sa)
  10. depends=(hicolor-icon-theme gtk-update-icon-cache librsvg)
  11. makedepends=(intltool git gtk3)
  12. groups=(gnome)
  13. _commit=58cd459e1fdba84f3c7e745636188750ad6d44c8 # gnome-3-22
  14. source=("git+https://git.gnome.org/browse/adwaita-icon-theme#commit=$_commit")
  15. sha256sums=('SKIP')
  16. pkgver() {
  17. cd $pkgname
  18. git describe --tags | sed 's/-/+/g'
  19. }
  20. prepare() {
  21. cd $pkgname
  22. autoreconf -fvi
  23. }
  24. build() {
  25. cd $pkgname
  26. ./configure --prefix=/usr
  27. make
  28. }
  29. package() {
  30. cd $pkgname
  31. make DESTDIR="$pkgdir" install
  32. }