Date: Saturday, April 11, 2020 @ 09:43:58 Author: arojas Revision: 380089
archrelease: copy trunk to testing-any Added: oxygen-icons/repos/testing-any/ oxygen-icons/repos/testing-any/PKGBUILD (from rev 380088, oxygen-icons/trunk/PKGBUILD) ----------+ PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) Copied: oxygen-icons/repos/testing-any/PKGBUILD (from rev 380088, oxygen-icons/trunk/PKGBUILD) =================================================================== --- testing-any/PKGBUILD (rev 0) +++ testing-any/PKGBUILD 2020-04-11 09:43:58 UTC (rev 380089) @@ -0,0 +1,44 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> +# Contributor: Pierre Schmitz <pie...@archlinux.de> + +pkgbase=oxygen-icons +pkgname=(oxygen-icons oxygen-icons-svg) +pkgver=5.69.0 +epoch=1 +pkgrel=1 +pkgdesc="The Oxygen Icon Theme" +arch=(any) +url='https://community.kde.org/Frameworks' +license=(LGPL) +makedepends=(extra-cmake-modules qt5-base) +source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgbase}5-$pkgver.tar.xz"{,.sig}) +sha256sums=('5e3e15e7e2a9579d61425e3cd465740a7d54e14c488983f8f441ba5a0abf27ee' + 'SKIP') +validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <fa...@kde.org> + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../${pkgbase}5-$pkgver + make +} + +package_oxygen-icons() { + groups=(kf5) + + cd build + make DESTDIR="$pkgdir" install +} + +package_oxygen-icons-svg() { + pkgdesc="The Oxygen Icon Theme (Scalable Vector Graphics)" + + cd ${pkgbase}5-$pkgver + find scalable -type f ! -name '*.sh' -exec \ + install -D -m644 "{}" "$pkgdir"/usr/share/icons/oxygen/{} \; +}