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 | 66c03aea8505ace084f674c26f287edf967c28b7 |
PKGBUILD | +5 | -11 |
diff --git a/PKGBUILD b/PKGBUILD index 9c7a4d3..dad3654 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Andrea Scarpino <andrea@archlinux.org> pkgname=knotifications -pkgver=5.70.0 +pkgver=5.71.0 pkgrel=1 pkgdesc='Abstraction for system notifications' arch=(x86_64) @@ -13,23 +13,17 @@ depends=(libcanberra libdbusmenu-qt5 kwindowsystem kconfig kcoreaddons qt5-speec makedepends=(extra-cmake-modules qt5-tools qt5-doc doxygen) groups=(kf5) source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('ccaf1fa79f3fa777a733ee4f5e97311a696c251b95a6446d82a358c1fb107605' +sha256sums=('b900146340621d54f6113600e85d287b28225d82515affb8690704433e5d0440' '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 }