Date: Sunday, December 18, 2022 @ 14:36:46
Author: arojas
Revision: 464561
archrelease: copy trunk to staging-x86_64
Added:
kimageformats/repos/staging-x86_64/
kimageformats/repos/staging-x86_64/PKGBUILD
(from rev 464560, kimageformats/trunk/PKGBUILD)
kimageformats/repos/staging-x86_64/keys/
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: kimageformats/repos/staging-x86_64/PKGBUILD (from rev 464560,
kimageformats/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-12-18 14:36:46 UTC (rev 464561)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kimageformats
+pkgver=5.101.0
+pkgrel=2
+pkgdesc='Image format plugins for Qt5'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(qt5-base)
+makedepends=(extra-cmake-modules karchive libavif openexr libheif libjxl
libraw)
+optdepends=('karchive: plugin for Krita and OpenRaster images'
+ 'libavif: AVIF format support'
+ 'openexr: EXR format support'
+ 'libheif: HEIF format support'
+ 'libjxl: JPEG-XL format support'
+ 'libraw: RAW format support')
+groups=(kf5)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('ae19b07141fdf977035e6decc50fa45855c0e635f57333a2443d3c24464c625f'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+options=(debug)
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DKIMAGEFORMATS_HEIF=ON
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}