mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
35 lines
867 B
Bash
35 lines
867 B
Bash
source ../kdeapps.conf
|
|
|
|
pkgname=kdeconnect
|
|
pkgver=1.0
|
|
_pkgver=1.0
|
|
_pkgseries=1.0
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc='Adds communication between KDE and your smartphone'
|
|
arch=(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 kdoctools)
|
|
optdepends=('sshfs: remote filesystem browser')
|
|
install=$pkgname.install
|
|
screenshot=('http://albertvaka.files.wordpress.com/2013/08/kcm.png')
|
|
source=("http://download.kde.org/stable/$pkgname/$_pkgseries/src/$pkgname-kde-$_pkgver.tar.xz")
|
|
sha1sums=('e6577abf01ef02c6fd3099ad449bb86cdb5a88eb')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../kdeconnect-kde-$_pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|