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 | a47eec7b97a2906adfe739e5a321253ee4ee2c52 |
PKGBUILD | +5 | -11 |
diff --git a/PKGBUILD b/PKGBUILD index 66e90c5..81761fa 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer:Antonio Rojas <arojas@archlinux.org> pkgname=purpose -pkgver=5.70.0 +pkgver=5.71.0 pkgrel=1 pkgdesc="Framework for providing abstractions to get the developer's purposes fulfilled" arch=(x86_64) @@ -13,23 +13,17 @@ optdepends=('kdeconnect: sharing to smartphone via KDE Connect' 'telegram-deskto 'bluedevil: sharing via Bluetooth') groups=(kf5) source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('50bd8f33e06a7217f32d68c15a54b11b3c8dac41c421cd75d45f10f9a0e8b4df' +sha256sums=('de0531a84f671a15fe4a6348220e922a3230178554e26baf392a1f295044e4be' 'SKIP') validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org> -prepare() { - mkdir -p build -} - build() { - cd build - cmake ../$pkgname-$pkgver \ + cmake -B build -S $pkgname-$pkgver \ -DCMAKE_INSTALL_LIBEXECDIR=lib \ -DBUILD_TESTING=OFF - make + cmake --build build } package() { - cd build - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build }