author | Antonio Rojas
<arojas@archlinux.org> 2020-06-13 18:21:37 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2020-06-13 18:21:37 UTC |
parent | c019e38d98bef5cd2cb4108c625da7d12694c18f |
PKGBUILD | +5 | -11 |
diff --git a/PKGBUILD b/PKGBUILD index 0dc7537..274a818 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Andrea Scarpino <andrea@archlinux.org> pkgname=kwallet -pkgver=5.70.0 +pkgver=5.71.0 pkgrel=1 pkgdesc='Secure and unified container for user passwords' arch=(x86_64) @@ -14,23 +14,17 @@ makedepends=(extra-cmake-modules kdoctools boost doxygen qt5-tools qt5-doc) optdepends=('kwalletmanager: Configuration GUI') groups=(kf5) source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('39054e5fcb3f6633ea8496fc4c8b47f5543ecadc9739be7564fdec1c19f746df' +sha256sums=('d53b5bc4bbe054101b012d63672efc30af6a5aea58f467037cab4735b6ace9b5' 'SKIP') validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org> -prepare() { - mkdir -p build -} - build() { - cd build - cmake ../$pkgname-$pkgver \ + cmake -B build -S $pkgname-$pkgver \ -DBUILD_TESTING=OFF \ -DBUILD_QCH=ON - make + cmake --build build } package() { - cd build - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build }