mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 20:24:38 +08:00
31 lines
634 B
Bash
31 lines
634 B
Bash
|
source ../plasma.conf
|
||
|
|
||
|
pkgname=kscreenlocker
|
||
|
pkgver=${PVersion}
|
||
|
pkgrel=1
|
||
|
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")
|
||
|
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
|
||
|
sha256sums=( $(getSum ${pkgname}) )
|
||
|
|
||
|
prepare() {
|
||
|
mkdir -p build
|
||
|
}
|
||
|
|
||
|
build() {
|
||
|
cd build
|
||
|
cmake_kf5 ../${pkgname}-${pkgver}
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd build
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|