# Maintainer: Timothy Redaelli # Contributor: Sergej Pupykin # Contributor: Jeff Mickey # Contributor: Alexander Baldeck # Contributor: Federico Quagliata (quaqo) # Contributor: Alexander Rødseth pkgname=twinkle-qt5 _pkgname=twinkle pkgver=1.9.0 pkgrel=1 pkgdesc="Softphone for voice over IP and IM communication using SIP" arch=('x86_64' 'i686') url="http://www.twinklephone.com/" license=('GPL') depends=('file' 'qt5-quick1' 'ccrtp' 'ilbc' 'bcg729') makedepends=('pkg-config' 'boost' 'cmake') source=("git+https://github.com/LubosD/$_pkgname.git#tag=v${pkgver}") md5sums=('SKIP') build() { cd "$_pkgname" mkdir -p build cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DWITH_ALSA=On -DWITH_SPEEX=On -DWITH_ILBC=On -DWITH_G729=On -DWITH_QT5=On # -DWITH_ZRTP=On make } package() { cd "$_pkgname/build" make DESTDIR="$pkgdir" install }