Skip to content
Snippets Groups Projects
Commit fb492dda authored by Bart Ribbers's avatar Bart Ribbers Committed by Leo
Browse files

community/telepathy-qt: add https to url

parent 4225b70e
No related branches found
No related tags found
1 merge request!5537community/telepathy-qt: add https to url
......@@ -2,9 +2,9 @@
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=telepathy-qt
pkgver=0.9.8
pkgrel=1
pkgrel=2
arch="all"
url="http://telepathy.freedesktop.org/wiki/"
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"
......@@ -14,7 +14,7 @@ subpackages="$pkgname-dev $pkgname-doc"
options="!check"
build() {
cmake \
cmake -B build \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
......@@ -22,19 +22,22 @@ build() {
-DDESIRED_QT_VERSION=5 \
-DENABLE_EXAMPLES=OFF \
-DENABLE_TESTS=TRUE
make
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 install
DESTDIR="$pkgdir" make -C build install
install -d "$pkgdir"/usr/share/doc/$pkgname
cp -r doc/html "$pkgdir"/usr/share/doc/$pkgname/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment