mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 05:17:07 +02:00
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: team/kde <bribbers@disroot.org>
|
|
|
|
# The group tag is just to easily find this APKBUILD by some scripts for automation
|
|
# group=kde-applications
|
|
pkgname=kdegraphics-thumbnailers
|
|
pkgver=24.08.1
|
|
pkgrel=0
|
|
# armhf blocked by extra-cmake-modules
|
|
arch="all !armhf"
|
|
pkgdesc="Thumbnailers for various graphics file formats"
|
|
url="https://www.kde.org/applications/graphics/"
|
|
license="GPL-2.0-or-later AND LGPL-2.0-or-later"
|
|
makedepends="
|
|
extra-cmake-modules
|
|
karchive-dev
|
|
kdegraphics-mobipocket-dev
|
|
kio-dev
|
|
libkdcraw-dev
|
|
libkexiv2-dev
|
|
qt6-qtbase-dev
|
|
samurai
|
|
"
|
|
_repo_url="https://invent.kde.org/graphics/kdegraphics-thumbnailers.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/kdegraphics-thumbnailers-$pkgver.tar.xz"
|
|
# No tests
|
|
options="!check"
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DBUILD_WITH_QT6=ON \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
d1b15005e080581ce31d96271bf8827a969ef95b3703ec80858b2d26fc5dd615d408471065647e0d7b7fef39b9e9af18fcf1af56594be13df5f3119fa81c2134 kdegraphics-thumbnailers-24.08.1.tar.xz
|
|
"
|