git » milou.git » commit a1d7aa7

Plasma 5.19.0

author Antonio Rojas
2020-06-09 11:00:48 UTC
committer Antonio Rojas
2020-06-09 11:00:48 UTC
parent a5cdf5b2c70828b5824d7de85828db6c59dfc9a9

Plasma 5.19.0

PKGBUILD +5 -11

diff --git a/PKGBUILD b/PKGBUILD
index 5785d62..182aaa8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino <andrea@archlinux.org>
 
 pkgname=milou
-pkgver=5.18.5
+pkgver=5.19.0
 pkgrel=1
 pkgdesc="A dedicated search application built on top of Baloo"
 arch=(x86_64)
@@ -13,25 +13,19 @@ depends=(krunner kitemmodels)
 makedepends=(extra-cmake-modules kdoctools)
 groups=(plasma)
 source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('7ec763833c025aa719d1e25f3c5c1c8b6c934a48bf346517e94660e09d8582b2'
+sha256sums=('e068b63da21e98f326c43211fd1f98f8fc720b16d3f5adf483e456e11b3d022c'
             'SKIP')
 validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell <jr@jriddell.org>
               '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah <bshah@kde.org>
               'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson <davidedmundson@kde.org>
               '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart@gmail.com>
 
-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
 }