# Contributor: Bart Ribbers # Maintainer: team/kde # The group tag is just to easily find this APKBUILD by some scripts for automation # group=kde-frameworks pkgname=kcodecs pkgver=9999_git1691238903 pkgrel=2 pkgdesc="Provide a collection of methods to manipulate strings using various encodings" arch="all !armhf" # armhf blocked by extra-cmake-modules url="https://community.kde.org/Frameworks" license="LGPL-2.1-only AND LGPL-2.1-or-later" makedepends=" doxygen extra-cmake-modules gperf graphviz qt5-qttools-dev samurai " checkdepends="xvfb-run" _repo_url="https://invent.kde.org/frameworks/kcodecs.git" source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kcodecs-$pkgver.tar.xz" subpackages="$pkgname-dev $pkgname-doc " _commit="" snapshot() { clean makedepends="git xz rsync tar" deps mkdir -p "$srcdir" && cd "$srcdir" git clone --filter=tree:0 https://invent.kde.org/frameworks/kcodecs.git . git archive --format tar --prefix=$pkgname/ $_commit > ../$pkgname-$_commit.tar xz -vv -T0 -9 -e ../$pkgname-$_commit.tar } build() { cmake -B build -G Ninja \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DBUILD_QCH=ON cmake --build build } check() { xvfb-run ctest --test-dir build --output-on-failure build -E "(rfc2047|kcharsets)test" } package() { DESTDIR="$pkgdir" cmake --install build } sha512sums=" ac931f5cba0f2e1de1ae1b88cfd1476082c29c3aa48545e23d956a9d79fd20dbea164fd02a85450c96c472254e8717c2887cd6f2a24a363af31acd0047cc1b6a kcodecs-5.108.0.tar.xz " options="$options !strip"