blob: 8bd03f65dda5a5c0ddf429f523425f07f1e98a0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=kteatime
pkgver=19.08.1
pkgrel=0
arch="all"
url="https://kde.org/applications/utilities/org.kde.kteatime"
pkgdesc="A handy timer for steeping tea"
license="GPL-2.0-or-later AND GFDL-1.2-only"
makedepends="extra-cmake-modules qt5-qtbase-dev kconfig-dev kcrash-dev kdoctools-dev ki18n-dev kiconthemes-dev knotifyconfig-dev knotifications-dev ktextwidgets-dev kxmlgui-dev kconfig-dev"
source="https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"
subpackages="$pkgname-doc $pkgname-lang"
options="!check" # No tests
build() {
cmake \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
make
}
check() {
local skip_tests=""
if [ "$CARCH" = "armv7" ]; then
skip_tests="kgpg-import" # Broken
fi
CTEST_OUTPUT_ON_FAILURE=TRUE ctest -E "$skip_tests"
}
package() {
DESTDIR="$pkgdir" make install
}
sha512sums="be87b18b1f6fd3f60b67335bd2492e169821ec9a98f39be257aa0ee841839d6aeb3b62648a7cc7056d1f8022149b45fac0b945c63c4fe5cd492b8f0bbe0dac5b kteatime-19.08.1.tar.xz"
|