diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-05-28 20:48:12 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-29 18:46:53 +0000 |
commit | f831f33cb489279ec999f7ab285507bd96327621 (patch) | |
tree | 1a84a08b77b6d498fa7a3e44b7fbb44d5f7758e5 /testing | |
parent | 862958439403651e514ec05b4676b7a9f27a3e10 (diff) | |
download | aports-f831f33cb489279ec999f7ab285507bd96327621.tar.bz2 aports-f831f33cb489279ec999f7ab285507bd96327621.tar.xz |
testing/kauth: new aport
Closes GH-8204
Diffstat (limited to 'testing')
-rw-r--r-- | testing/kauth/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/kauth/APKBUILD b/testing/kauth/APKBUILD new file mode 100644 index 0000000000..740b6c8766 --- /dev/null +++ b/testing/kauth/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Bart Ribbers <bribbers@disroot.org> +# Maintainer: Bart Ribbers <bribbers@disroot.org> +pkgname=kauth +pkgver=5.58.0 +pkgrel=0 +pkgdesc="Abstraction to system policy and authentication features" +arch="all" +url="https://community.kde.org/Frameworks" +license="LGPL-2.1-or-later" +depends_dev="qt5-qtbase-dev kcoreaddons-dev polkit-qt-1-dev" +makedepends="$depends_dev extra-cmake-modules qt5-qttools-dev doxygen" +source="https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz" +subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" + +build() { + cmake \ + -DCMAKE_BUILD_TYPE=RelWithDebugInfo \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DBUILD_QCH=ON + make +} + +check() { + # KAuthHelperTest hangs + CTEST_OUTPUT_ON_FAILURE=TRUE ctest -E '(KAuthHelperTest)' +} + +package() { + DESTDIR="$pkgdir" make install +} +sha512sums="7d337b4b6507dd1b35df118a5a1f9167efcec67386f85d0ed3c7f22dbb6c56fddf7ba4979c7f1c70c11b525f99a2e3e95e3a1d4f9971d8c02ce40e9664ee0cef kauth-5.58.0.tar.xz" |