blob: b6d1f820452629bb0256d17736c85849c173d24e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
pkgbase=qt-heic-image-plugin
pkgname=(qt5-heic-image-plugin qt6-heic-image-plugin)
pkgver=0.4.0
pkgrel=1
pkgdesc="Qt plug-in to allow Qt and KDE based applications to read/write HEIF/HEIC images."
arch=("x86_64")
url="https://github.com/novomesk/qt-heic-image-plugin"
license=("LGPL-2.1-only")
depends=(libheif)
makedepends=(cmake extra-cmake-modules qt5-base qt6-base)
source=(
"$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('2c80c308636901caff4aae9c7de73fc5d771fc90f2bd2c61e4939fdeaa65186b')
build() {
msg2 "Building QT5 version..."
cmake -B build-qt5 -S qt-heic-image-plugin-$pkgver \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DCMAKE_BUILD_TYPE=None \
-DQT_MAJOR_VERSION=5
cmake --build build-qt5
msg2 "Building QT6 version..."
cmake -B build-qt6 -S qt-heic-image-plugin-$pkgver \
-DCMAKE_SKIP_INSTALL_RPATH=ON \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DCMAKE_BUILD_TYPE=None \
-DQT_MAJOR_VERSION=6
cmake --build build-qt6
}
package_qt5-heic-image-plugin() {
depends+=(qt5-base)
pkgdesc+=" (QT5 version)"
DESTDIR="$pkgdir" cmake --install build-qt5
}
package_qt6-heic-image-plugin() {
depends+=(qt6-base)
pkgdesc+=" (QT6 version)"
DESTDIR="$pkgdir" cmake --install build-qt6
}
|