PKGBUILD 893 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Contributor: Lukas Fleischer <lfleischer@archlinux.org>
  2. # Contributor: Jan de Groot <jgc@archlinux.org>
  3. pkgname=adwaita-icon-theme
  4. pkgver=3.26.0
  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 gnome-common)
  12. groups=(gnome)
  13. _commit=7b911bd35d445a0933994044a212b172e09feb1c # tags/3.26.0^0
  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. # Fix up missing tag
  23. git tag -f 3.25.91 948a38e4d4eae2fec50a52cf7aace6b20fa053c8
  24. autoreconf -fvi
  25. }
  26. build() {
  27. cd $pkgname
  28. ./configure --prefix=/usr
  29. make
  30. }
  31. package() {
  32. cd $pkgname
  33. make DESTDIR="$pkgdir" install
  34. }