Date: Saturday, March 26, 2016 @ 22:24:24 Author: arojas Revision: 262598
Add KF5 version of krdc Added: krdc/ krdc/kde-unstable/ krdc/kde-unstable/PKGBUILD ----------+ PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) Added: krdc/kde-unstable/PKGBUILD =================================================================== --- krdc/kde-unstable/PKGBUILD (rev 0) +++ krdc/kde-unstable/PKGBUILD 2016-03-26 21:24:24 UTC (rev 262598) @@ -0,0 +1,42 @@ +# $Id: PKGBUILD 261475 2016-03-15 10:26:40Z arojas $ +# Maintainer: Felix Yan <[email protected]> +# Maintainer: Antonio Rojas <[email protected]> +# Contributor: Andrea Scarpino <[email protected]> + +pkgname=krdc +pkgver=16.03.80 +pkgrel=1 +pkgdesc='Remote Desktop Client' +url='http://kde.org/applications/internet/krdc/' +arch=(i686 x86_64) +license=(GPL LGPL FDL) +groups=(kde-applications kdenetwork) +depends=(kcmutils kdnssd knotifyconfig) +makedepends=(extra-cmake-modules libvncserver freerdp kdoctools) +optdepends=('libvncserver: VNC support' + 'freerdp: RDP support' + 'kdebase-keditbookmarks: to edit bookmarks') +conflicts=(kdenetwork-krdc) +replaces=(kdenetwork-krdc) +source=("http://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz") +sha1sums=('e0f677844a4e942b96023738b3be10e27e6454b3') + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../$pkgname-$pkgver \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTING=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DKDE_INSTALL_USE_QT_SYS_PATHS=ON + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install +}
