author | Antonio Rojas
<arojas@archlinux.org> 2020-06-11 18:13:21 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2020-06-11 18:13:21 UTC |
parent | a0f156eabcb7a041a32c3fdb21018a371aba0d40 |
PKGBUILD | +5 | -11 |
diff --git a/PKGBUILD b/PKGBUILD index 3e83e3e..f645657 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Antonio Rojas <arojas@archlinux.org> pkgname=kaccounts-integration -pkgver=20.04.1 +pkgver=20.04.2 pkgrel=1 pkgdesc='Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others' @@ -12,23 +12,17 @@ groups=(kde-applications kde-network) depends=(kcmutils signon-kwallet-extension signon-plugin-oauth2 signon-ui) makedepends=(extra-cmake-modules kdoctools) source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('a5c05c8cd1f29961992e058283ccc885395715b75666d7363ff449aa8586981f' +sha256sums=('d97e2e0fe7d6327e89bafe6fce290291c7a9bc4ce1ddf4606a4e29430d3241be' 'SKIP') validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org> F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org> -prepare() { - mkdir -p build -} - build() { - cd build - cmake ../$pkgname-$pkgver \ + cmake -B build -S $pkgname-$pkgver \ -DBUILD_TESTING=OFF - make + cmake --build build } package() { - cd build - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build }