mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-09 14:27:20 +08:00
31 lines
793 B
Bash
31 lines
793 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=telepathy-logger-qt
|
|
pkgver=0.6.0
|
|
pkgrel=1
|
|
pkgdesc="Qt bindings for telepathy logger"
|
|
arch=('x86_64')
|
|
url="https://projects.kde.org/projects/kdereview/telepathy-logger-qt"
|
|
license=('GPL')
|
|
depends=('telepathy-qt' 'qt-gstreamer' 'telepathy-logger' 'boost-libs')
|
|
makedepends=('automoc4' 'cmake' 'python2' 'boost')
|
|
group=('kde-telepathy')
|
|
source=("ftp://mirrors.mit.edu/kde/stable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('7dfe075ed66c0c62e54478ba834bb3c9')
|
|
|
|
build() {
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DPYTHON_EXECUTABLE=/usr/bin/python2
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|