Date: Thursday, March 16, 2023 @ 19:41:16 Author: alex19ep Revision: 1421162
archrelease: copy trunk to community-testing-any Added: mate-icon-theme/repos/community-testing-any/ mate-icon-theme/repos/community-testing-any/PKGBUILD (from rev 1421161, mate-icon-theme/trunk/PKGBUILD) ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Copied: mate-icon-theme/repos/community-testing-any/PKGBUILD (from rev 1421161, mate-icon-theme/trunk/PKGBUILD) =================================================================== --- community-testing-any/PKGBUILD (rev 0) +++ community-testing-any/PKGBUILD 2023-03-16 19:41:16 UTC (rev 1421162) @@ -0,0 +1,29 @@ +# Maintainer: Alexander Epaneshnikov <alex1...@archlinux.org> +# Contributor: Brad Fanella <ces...@archlinux.org> +# Contributor: Martin Wimpress <c...@flexion.org> + +pkgname=mate-icon-theme +pkgver=1.27.0 +pkgrel=1 +pkgdesc="MATE icon theme" +url="https://mate-desktop.org" +arch=('any') +license=('LGPL') +options=('!emptydirs') +depends=('gettext') +makedepends=('icon-naming-utils') +groups=('mate') +source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz") +sha256sums=('fc540988fe2f66c888eaf28bb23bfcb9303e0299d1c9ef6ca79756635ce213c4') + +build() { + cd "${pkgname}-${pkgver}" + ./configure \ + --prefix=/usr + make +} + +package() { + cd "${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +}