2015-11-26 04:23:31 +08:00
|
|
|
source ../plasma.conf
|
|
|
|
|
|
|
|
pkgname=kscreenlocker
|
|
|
|
pkgver=${PVersion}
|
2018-02-08 03:39:13 +08:00
|
|
|
pkgrel=1
|
2015-11-26 04:23:31 +08:00
|
|
|
pkgdesc='Library and components for secure lock screen architecture'
|
|
|
|
arch=(x86_64)
|
|
|
|
url='https://projects.kde.org/kscreenlocker'
|
|
|
|
license=(LGPL)
|
|
|
|
groups=(plasma)
|
|
|
|
depends=(kdelibs4support plasma-framework kidletime kwayland libxcursor)
|
|
|
|
makedepends=(extra-cmake-modules python kdoctools)
|
|
|
|
options=("debug")
|
2016-10-01 03:01:02 +08:00
|
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
|
|
sha256sums=( $(getSum ${pkgname})
|
|
|
|
'SKIP' )
|
2017-08-10 17:46:06 +08:00
|
|
|
validpgpkeys=(${Pvalidpgpkeys[@]})
|
2015-11-26 04:23:31 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
2016-02-10 04:20:06 +08:00
|
|
|
|
2016-03-03 05:44:28 +08:00
|
|
|
#cd $pkgname-${pkgver}
|
2015-11-26 04:23:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|