desktop/kdeconnect/PKGBUILD
2015-11-11 14:54:58 +00:00

44 lines
1.1 KiB
Bash

# Maintainer: Chaoting Liu <brli@chakraos.org>
pkgname=kdeconnect-git
pkgver=10.8.e424bce
pkgrel=1
pkgdesc='Adds communication between KDE and your smartphone (Experimental build)'
arch=(i686 x86_64)
url='https://projects.kde.org/projects/playground/base/kdeconnect-kde'
license=(GPL2)
depends=(kio kcmutils qca-qt5 libfakekey hicolor-icon-theme kwayland) # telepathy-qt5 - requires 0.9.7
makedepends=(extra-cmake-modules git python3)
optdepends=('sshfs: remote filesystem browser')
provides=(kdeconnect)
conflicts=(kdeconnect)
screenshot=('http://albertvaka.files.wordpress.com/2013/08/kcm.png')
source=("git://anongit.kde.org/kdeconnect-kde.git#commit=e424bce")
install=$pkgname.install
sha256sums=('SKIP')
pkgver() {
cd kdeconnect-kde
printf "10.8.$(git rev-parse --short HEAD)"
}
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../kdeconnect-kde \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DLIB_INSTALL_DIR=lib \
-DLIBEXEC_INSTALL_DIR=lib \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}