1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
- # Contributor: Lukas Fleischer <lfleischer@archlinux.org>
- # Contributor: Jan de Groot <jgc@archlinux.org>
- pkgname=adwaita-icon-theme
- pkgver=3.34.0
- pkgrel=1
- pkgdesc="GNOME standard icons"
- url="https://gitlab.gnome.org/GNOME/adwaita-icon-theme"
- arch=(any)
- license=(LGPL3 CCPL:by-sa)
- depends=(hicolor-icon-theme gtk-update-icon-cache librsvg)
- makedepends=(git gtk3)
- _commit=4b07f58bf29380bf65c3828122c07c61e53e285a # tags/2.34.0^0
- source=("git+https://gitlab.gnome.org/GNOME/adwaita-icon-theme.git#commit=$_commit")
- sha256sums=('SKIP')
- pkgver() {
- cd $pkgname
- git describe --tags | sed 's/-/+/g'
- }
- prepare() {
- cd $pkgname
- # Fixup tag
- git tag -f 3.34.0 4b07f58bf29380bf65c3828122c07c61e53e285a
- git tag -d 2.34.0
- autoreconf -fvi
- }
-
- build() {
- cd $pkgname
- ./configure --prefix=/usr
- make
- }
- check() {
- cd $pkgname
- make check
- }
- package() {
- cd $pkgname
- make DESTDIR="$pkgdir" install
- }
|