Date: Saturday, October 14, 2017 @ 09:28:13 Author: arojas Revision: 307908
archrelease: copy trunk to testing-any Added: oxygen-icons/repos/testing-any/ oxygen-icons/repos/testing-any/PKGBUILD (from rev 307907, oxygen-icons/trunk/PKGBUILD) ----------+ PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) Copied: oxygen-icons/repos/testing-any/PKGBUILD (from rev 307907, oxygen-icons/trunk/PKGBUILD) =================================================================== --- testing-any/PKGBUILD (rev 0) +++ testing-any/PKGBUILD 2017-10-14 09:28:13 UTC (rev 307908) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Felix Yan <felixonm...@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.39.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%.*}/${pkgname}5-${pkgver}.tar.xz"{,.sig}) +sha256sums=('28e9243820e380b965a2f85b1290ad98158438cb1498c79d75fb95ef80b639cc' + 'SKIP') +validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <fa...@kde.org> + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../${pkgbase}5-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + 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/{}" \; +}