mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 04:07:15 +08:00
42 lines
1.0 KiB
Bash
42 lines
1.0 KiB
Bash
# Maintainer: Chaoting Liu <brli@chakraos.org>
|
|
|
|
pkgname=kdeconnect
|
|
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')
|
|
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
|
|
}
|