desktop/kdeconnect/PKGBUILD
2018-04-09 15:02:48 +01:00

34 lines
850 B
Bash

source ../kdeapps.conf
pkgname=kdeconnect
pkgver=1.3.0
pkgrel=1
epoch=1
pkgdesc='Adds communication between KDE and your smartphone'
arch=(x86_64)
url='https://community.kde.org/KDEConnect'
license=(GPL2)
depends=(kio kcmutils qca-qt5 libfakekey hicolor-icon-theme kwayland telepathy-qt5)
makedepends=(extra-cmake-modules python3 kdoctools qt5-declarative)
optdepends=('sshfs: remote filesystem browser'
'qt5-declarative: QML bindings')
install=$pkgname.install
screenshot=('http://albertvaka.files.wordpress.com/2013/08/kcm.png')
source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-kde-$pkgver.tar.xz")
sha1sums=('7bb8fa92cebb5b53c2b5f5fedb8fb1454eb654f6')
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../kdeconnect-kde-$pkgver
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}