diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-10-22 11:05:49 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-10-22 08:53:27 -0300 |
commit | e0c75fdacd60ab973de43c9c877c19db15ffe5d4 (patch) | |
tree | e2e9ec1198dce74555048aed17aa87d7f3846a1b /testing/calendarsupport/APKBUILD | |
parent | 2142b8bc9ed2bab366bb968082e4ac491ad2d6aa (diff) | |
download | aports-e0c75fdacd60ab973de43c9c877c19db15ffe5d4.tar.bz2 aports-e0c75fdacd60ab973de43c9c877c19db15ffe5d4.tar.xz |
testing/calendarsupport: rebuild against kcalendarcore
Diffstat (limited to 'testing/calendarsupport/APKBUILD')
-rw-r--r-- | testing/calendarsupport/APKBUILD | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/testing/calendarsupport/APKBUILD b/testing/calendarsupport/APKBUILD index 992b0aa130..033c8f832d 100644 --- a/testing/calendarsupport/APKBUILD +++ b/testing/calendarsupport/APKBUILD @@ -2,18 +2,25 @@ # Maintainer: Bart Ribbers <bribbers@disroot.org> pkgname=calendarsupport pkgver=19.08.2 -pkgrel=0 +pkgrel=1 pkgdesc="Library providing calendar support" arch="all !ppc64le !s390x" # Limited by akonadi-calendar-dev -> kmailtransport -> libkgapi -> qt5-qtwebengine url="https://kontact.kde.org" license="GPL-2.0-or-later AND LGPL-2.0-or-later" -depends_dev="qt5-qtbase-dev akonadi-dev ki18n-dev kiconthemes-dev kguiaddons-dev kio-dev kmime-dev akonadi-mime-dev kcodecs-dev kcalutils-dev kcalcore-dev kidentitymanagement-dev kholidays-dev akonadi-calendar-dev pimcommon-dev kdepim-apps-libs-dev" +depends_dev="qt5-qtbase-dev akonadi-dev ki18n-dev kiconthemes-dev kguiaddons-dev kio-dev kmime-dev akonadi-mime-dev kcodecs-dev kcalutils-dev kcalendarcore-dev kidentitymanagement-dev kholidays-dev akonadi-calendar-dev pimcommon-dev kdepim-apps-libs-dev" makedepends="$depends_dev extra-cmake-modules qt5-qttools-dev qt5-qttools-static" source="https://download.kde.org/stable/applications/$pkgver/src/calendarsupport-$pkgver.tar.xz" subpackages="$pkgname-dev $pkgname-lang" +prepare() { + default_prepare + + mkdir "$builddir"/build +} + build() { - cmake \ + cd "$builddir"/build + cmake "$builddir" \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib @@ -21,10 +28,12 @@ build() { } check() { + cd "$builddir"/build CTEST_OUTPUT_ON_FAILURE=TRUE ctest } package() { + cd "$builddir"/build DESTDIR="$pkgdir" make install } sha512sums="122151188d8f0d7db0739ea63daf74ef429c3b7dfef7f6379e2336c23d4c3ecf42dfea9f549ebe53e37e06fbe187dd7d080a7b5d051ae538e28e95c737075f1e calendarsupport-19.08.2.tar.xz" |