Date: Saturday, September 12, 2020 @ 19:51:49
Author: arojas
Revision: 395943
archrelease: copy trunk to testing-any
Added:
oxygen-icons/repos/testing-any/
oxygen-icons/repos/testing-any/PKGBUILD
(from rev 395942, oxygen-icons/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: oxygen-icons/repos/testing-any/PKGBUILD (from rev 395942,
oxygen-icons/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2020-09-12 19:51:49 UTC (rev 395943)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+# Contributor: Pierre Schmitz <[email protected]>
+
+pkgbase=oxygen-icons
+pkgname=(oxygen-icons oxygen-icons-svg)
+pkgver=5.74.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=('a6627b15fc386c31ae97ceb27ab85acaf06e5daccd7cf8740a8d5acf3debb073'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+
+build() {
+ cmake -B build -S ${pkgbase}5-$pkgver
+ cmake --build build
+}
+
+package_oxygen-icons() {
+ groups=(kf5)
+
+ DESTDIR="$pkgdir" cmake --install build
+}
+
+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/{} \;
+}