aboutsummaryrefslogtreecommitdiffstats
path: root/community/telepathy-qt/APKBUILD
blob: 9d87aefe9544d5c615eaaafc3b3eca36fd8832bc (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
37
38
39
40
41
42
43
44
45
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=telepathy-qt
pkgver=0.9.8
pkgrel=2
arch="all"
url="https://telepathy.freedesktop.org/wiki/"
license="LGPL-2.1-or-later"
pkgdesc="A library for Qt-based Telepathy clients"
depends_dev="telepathy-farstream-dev telepathy-glib-dev gstreamer-dev"
makedepends="$depends_dev cmake python3 qt5-qttools-dev doxygen"
source="https://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-$pkgver.tar.gz"
subpackages="$pkgname-dev $pkgname-doc"
options="!check"

build() {
	cmake -B build \
		-DCMAKE_BUILD_TYPE=None \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_INSTALL_LIBDIR=lib \
		-DPYTHON_EXECUTABLE=/usr/bin/python3 \
		-DDESIRED_QT_VERSION=5 \
		-DENABLE_EXAMPLES=OFF \
		-DENABLE_TESTS=TRUE
	make -C build

	cd build
	doxygen doxygen.cfg
}

check() {
	cd build

	# BaseConnectionManager requires jabber support
	# BaseProtocol is broken
	CTEST_OUTPUT_ON_FAILURE=TRUE ctest -E "Base(ConnectionManager|Protocol)"
}

package() {
	DESTDIR="$pkgdir" make -C build install

	install -d "$pkgdir"/usr/share/doc/$pkgname
	cp -r doc/html "$pkgdir"/usr/share/doc/$pkgname/
}
sha512sums="fad662c02417c8e4e239d438ea3549226e589442aea8418c8922a6b78ff88422a36c1cc0d2e3591240fac115390a7fbdb1b4deea98187051cc811175b60b9e8b  telepathy-qt-0.9.8.tar.gz"