PKGBUILD 793 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Contributor: Lukas Fleischer <lfleischer@archlinux.org>
  2. # Contributor: Jan de Groot <jgc@archlinux.org>
  3. pkgname=adwaita-icon-theme
  4. pkgver=3.27.90
  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. _commit=68bc459ed6cc787b91f564b42a7521e61641a346 # tags/3.27.90^0
  13. source=("git+https://git.gnome.org/browse/adwaita-icon-theme#commit=$_commit")
  14. sha256sums=('SKIP')
  15. pkgver() {
  16. cd $pkgname
  17. git describe --tags | sed 's/-/+/g'
  18. }
  19. prepare() {
  20. cd $pkgname
  21. autoreconf -fvi
  22. }
  23. build() {
  24. cd $pkgname
  25. ./configure --prefix=/usr
  26. make
  27. }
  28. package() {
  29. cd $pkgname
  30. make DESTDIR="$pkgdir" install
  31. }