mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 13:57:19 +08:00
36 lines
880 B
Bash
36 lines
880 B
Bash
# Maintainer: Chaoting Liu <brli@chakraos.org>
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=kdeconnect
|
|
pkgver=0.9
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc='Adds communication between KDE and your smartphone'
|
|
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 python3)
|
|
optdepends=('sshfs: remote filesystem browser')
|
|
screenshot=('http://albertvaka.files.wordpress.com/2013/08/kcm.png')
|
|
source=("http://download.kde.org/unstable/$pkgname/$pkgver/src/$pkgname-kde-$pkgver.tar.xz")
|
|
sha1sums=('f7e946c3e50ecf2057f2ee56c166ca914d759ae0')
|
|
|
|
install=$pkgname.install
|
|
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../kdeconnect-kde-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|