aports/community/digikam/APKBUILD
Bart Ribbers 44ce39a091 */*: remove unnecessary --output-on-failure
We set OUTPUT_ON_FAILURE by default nowadays so this argument is
unnecessary
2025-03-19 15:41:30 +00:00

98 lines
2.3 KiB
Text

# 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-other
pkgname=digikam
pkgver=8.5.0
pkgrel=0
pkgdesc="An advanced open-source digital photo management application"
url="https://www.digikam.org/"
# armhf blocked by extra-cmake-modules
# riscv64, ppc64le, s390 and loongarch64 blocked by akonadi-contacts, marble and opencv
# x86 and armv7 blocked by qt6-qtwebengine missing components
arch="all !armhf !ppc64le !s390x !riscv64 !loongarch64 !x86 !armv7"
license="LGPL-2.1-or-later AND GPL-2.0-or-later"
makedepends="
akonadi-contacts-dev
bison
boost-dev
doxygen
eigen-dev
exiv2-dev
expat-dev
extra-cmake-modules
flex
gettext
graphviz
imagemagick-dev
jasper-dev
kcalendarcore-dev
kdoctools-dev
kfilemetadata-dev
lcms2-dev
lensfun-dev
libgphoto2-dev
libheif-dev
libksane-dev
libpng-dev
libxml2-dev
libxslt-dev
marble-dev
opencv-dev
qt6-qtmultimedia-dev
qt6-qtnetworkauth-dev
qt6-qtscxml-dev
qt6-qtwebengine-dev
samurai
tiff-dev
x265-dev
"
checkdepends="xvfb-run"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
_repo_url="https://invent.kde.org/graphics/digikam.git"
source="https://download.kde.org/stable/digikam/$pkgver/digiKam-$pkgver.tar.xz
"
#options="net" # needed for test data (todo)
options="!check" # no tests were found
build() {
cmake -B build -G Ninja \
-DBUILD_WITH_QT6=ON \
-DCMAKE_BUILD_TYPE=MinSizeRel \
-DCMAKE_C_STANDARD=11 \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
cmake --build build
}
check() {
local tests="
albums
digikam-advancedrename
digikam-detectblur
digikam-dimghistorygraph
digikam-printmetadata
digikam-queryrevision
digikam-setiptcpreview
digikam-tagsreadwrite
digikam-timestampupdate
frequentrequests
photos
userinfo
"
local skipped_tests="("
for test in $tests; do
skipped_tests="$skipped_tests|$test"
done
skipped_tests="$skipped_tests)_utest"
xvfb-run -a ctest --test-dir build -E "$skipped_tests"
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
sha512sums="
5610f0173043e29a2b5ff62b2ed2c2bea79e10cd20a0c2416ebb425457cee55aa8b8d575ba57e8e188a899cc909516ea05e6c80e73e3316742cc9e8119855509 digiKam-8.5.0.tar.xz
"