diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-07-14 00:55:42 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-13 22:20:39 -0300 |
commit | c702f2a812cfbc5c0c1a68b6f120cf332f788f1f (patch) | |
tree | 800e1687809b5e688995a9948d19af9e577a167d /community/knotifications | |
parent | 8d48f29796e55f6906ecb8cb8ef27e1b4dc3b820 (diff) | |
download | aports-c702f2a812cfbc5c0c1a68b6f120cf332f788f1f.tar.bz2 aports-c702f2a812cfbc5c0c1a68b6f120cf332f788f1f.tar.xz |
community/kde-frameworks: move from testing
Diffstat (limited to 'community/knotifications')
-rw-r--r-- | community/knotifications/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/knotifications/APKBUILD b/community/knotifications/APKBUILD new file mode 100644 index 0000000000..a8cfb6d8c4 --- /dev/null +++ b/community/knotifications/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Bart Ribbers <bribbers@disroot.org> +# Maintainer: Bart Ribbers <bribbers@disroot.org> +pkgname=knotifications +pkgver=5.60.0 +pkgrel=0 +pkgdesc="Abstraction for system notifications" +arch="all" +url="https://community.kde.org/Frameworks" +license="LGPL-2.1-only OR LGPL-3.0-only" +depends_dev="qt5-qtbase-dev qt5-qtspeech-dev qt5-qtx11extras-dev kwindowsystem-dev kconfig-dev kcodecs-dev kcoreaddons-dev phonon-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" +options="!check" # Fails due to requiring running dbus-daemon + +build() { + cmake \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DBUILD_QCH=ON + make +} + +check() { + CTEST_OUTPUT_ON_FAILURE=TRUE ctest +} + +package() { + DESTDIR="$pkgdir" make install +} +sha512sums="a386f90313a514f629b6af47a30f6b4d2ef10f079ff9f5f5f92094c627c09632ffffd5c1bc75109f4484f4d2fdd42825a3c713d59327196902ebb5d77ebea7fa knotifications-5.60.0.tar.xz" |