Date: Sunday, February 13, 2022 @ 18:48:50 Author: arojas Revision: 437155
archrelease: copy trunk to testing-x86_64 Added: kimageformats/repos/testing-x86_64/ kimageformats/repos/testing-x86_64/PKGBUILD (from rev 437154, kimageformats/trunk/PKGBUILD) ----------+ PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) Copied: kimageformats/repos/testing-x86_64/PKGBUILD (from rev 437154, kimageformats/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2022-02-13 18:48:50 UTC (rev 437155) @@ -0,0 +1,35 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=kimageformats +pkgver=5.91.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) +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') +groups=(kf5) +source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('aba371cbb11afba36c394beac443f1e8d3ab9d84801f44bcc252f13e868dc835' + 'SKIP') +validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <fa...@kde.org> +options=(debug) + +build() { + cmake -B build -S $pkgname-$pkgver \ + -DBUILD_TESTING=OFF \ + -DKIMAGEFORMATS_HEIF=ON + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}