core/kwallet/PKGBUILD

41 lines
820 B
Bash
Raw Normal View History

2014-11-15 06:35:29 +08:00
# Contributor: Andrea Scarpino <andrea@archlinux.org>
source ../frameworks.conf
pkgname=kwallet
pkgver=${KFVersion}
2017-04-12 05:22:44 +08:00
pkgrel=1
2014-11-15 06:35:29 +08:00
pkgdesc='Secure and unified container for user passwords'
arch=('x86_64')
url='https://projects.kde.org/projects/frameworks/kwallet'
license=('LGPL')
2016-12-21 06:02:08 +08:00
depends=('knotifications' 'kiconthemes' 'kservice' 'gpgme')
makedepends=('extra-cmake-modules' 'python3' 'kdoctools' 'boost')
2014-11-15 06:35:29 +08:00
checkdepends=('cmake')
groups=('kf5')
options=("debug")
2017-03-05 08:49:08 +08:00
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz"{,.sig})
sha256sums=( $(getSum ${pkgname})
SKIP)
validpgpkeys=( ${KFvalidpgpkeys} )
2014-11-15 06:35:29 +08:00
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
# check() {
# cd build
# make test
# }
2014-11-15 06:35:29 +08:00
package() {
cd build
make DESTDIR="${pkgdir}" install
}