PKGBUILD 885 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
  2. # Contributor: Lukas Fleischer <lfleischer@archlinux.org>
  3. # Contributor: Jan de Groot <jgc@archlinux.org>
  4. pkgname=adwaita-icon-theme
  5. pkgver=3.30.1
  6. pkgrel=1
  7. pkgdesc="GNOME standard icons"
  8. url="https://gitlab.gnome.org/GNOME/adwaita-icon-theme"
  9. arch=(any)
  10. license=(LGPL3 CCPL:by-sa)
  11. depends=(hicolor-icon-theme gtk-update-icon-cache librsvg)
  12. makedepends=(git gtk3)
  13. _commit=8168063b3fe7a69f7d76484442dec794599b7d58 # tags/3.30.1^0
  14. source=("git+https://gitlab.gnome.org/GNOME/adwaita-icon-theme.git#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. check() {
  30. cd $pkgname
  31. make check
  32. }
  33. package() {
  34. cd $pkgname
  35. make DESTDIR="$pkgdir" install
  36. }