git » kio-extras.git » commit e869cf5

Update to 20.04.2

author Antonio Rojas
2020-06-11 18:13:21 UTC
committer Antonio Rojas
2020-06-11 18:13:21 UTC
parent b1e6212cd326b1061589c3dc24013847fff280b5

Update to 20.04.2

PKGBUILD +5 -11

diff --git a/PKGBUILD b/PKGBUILD
index add14fd..084bfe2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino <andrea@archlinux.org>
 
 pkgname=kio-extras
-pkgver=20.04.1
+pkgver=20.04.2
 pkgrel=1
 pkgdesc="Additional components to increase the functionality of KIO"
 arch=(x86_64)
@@ -16,24 +16,18 @@ optdepends=('qt5-imageformats: thumbnails for additional image formats' 'perl: i
             'libappimage: AppImage thumbnails' 'icoutils: Windows executable thumbnails')
 groups=(kde-applications kde-network)
 source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('4a81b3f8f81fa7b6d0677d6706bbb9c995db27643ce40fca6501c2c56c2d8f33'
+sha256sums=('fd81859ac88a53dddd4e421bd4b7d1b9c9073f18d381dc9a3370fc703bd3e629'
             '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 \
     -DLIBAPPIMAGE_LIBRARIES=libappimage.so \
     -DBUILD_TESTING=OFF
-  make
+  cmake --build build
 }
 
 package() {
-  cd build
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" cmake --install build
 }