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 | 7ff171d5666824fe6f67f771bacf9c0f13fb085d |
PKGBUILD | +5 | -11 |
diff --git a/PKGBUILD b/PKGBUILD index 748845c..0c8a5a5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Andrea Scarpino <andrea@archlinux.org> pkgname=knotifyconfig -pkgver=5.70.0 +pkgver=5.71.0 pkgrel=1 pkgdesc='Configuration system for KNotify' arch=(x86_64) @@ -13,23 +13,17 @@ depends=(kio) makedepends=(extra-cmake-modules doxygen qt5-tools qt5-doc) groups=(kf5) source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('f2012fd1e774b3e61d1e52c0f09185841cf4c2a6131cca36d6bc2aff321e88b4' +sha256sums=('226b7f956f7013027621c4018b4376b76129ea4195df67fc7df4435c54baf50e' '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 }