mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 13:34:48 +08:00
36 lines
734 B
Bash
36 lines
734 B
Bash
source ../plasma.conf
|
|
|
|
pkgname=plasma-vault
|
|
pkgver=${PVersion}
|
|
pkgrel=1
|
|
pkgdesc="Plasma applet and services for creating encrypted vaults"
|
|
arch=(x86_64)
|
|
url="https://www.kde.org/"
|
|
license=(LGPL)
|
|
groups=(plasma)
|
|
options=("debug")
|
|
depends=(plasma-workspace)
|
|
makedepends=(extra-cmake-modules python)
|
|
optdepends=('encfs: to use encFS for encryption' 'cryfs: to use cryFS for encryption')
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
sha256sums=( $(getSum ${pkgname})
|
|
'SKIP' )
|
|
validpgpkeys=( ${Pvalidpgpkeys[@]} )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|