Date: Friday, November 11, 2022 @ 20:06:34
Author: arojas
Revision: 461224
archrelease: copy trunk to kde-unstable-x86_64
Added:
kimageformats/repos/kde-unstable-x86_64/
kimageformats/repos/kde-unstable-x86_64/PKGBUILD
(from rev 461223, kimageformats/trunk/PKGBUILD)
kimageformats/repos/kde-unstable-x86_64/keys/
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: kimageformats/repos/kde-unstable-x86_64/PKGBUILD (from rev 461223,
kimageformats/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2022-11-11 20:06:34 UTC (rev 461224)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kimageformats
+pkgver=5.100.0
+pkgrel=1
+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=('cbb5253d55c0ac09689b772f0723a42c290e8df3448116f556f5d320c6738827'
+ '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
+}