summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2020-06-22 10:42:50 -0400
committerDavid P <megver83@parabola.nu>2020-06-22 10:42:50 -0400
commitf54148fbb6d6d07ab037e95591b97c4551a6cf52 (patch)
treef1e43bc9eb73e3742e18bd63cd866c7709958539 /libre
parenta09b34620af4083210a7d29adeea9c8aadb7f04b (diff)
downloadabslibre-f54148fbb6d6d07ab037e95591b97c4551a6cf52.tar.gz
abslibre-f54148fbb6d6d07ab037e95591b97c4551a6cf52.tar.bz2
abslibre-f54148fbb6d6d07ab037e95591b97c4551a6cf52.zip
updpkg: libre/kio 5.71.0-1.parabola1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre')
-rw-r--r--libre/kio/PKGBUILD15
1 files changed, 6 insertions, 9 deletions
diff --git a/libre/kio/PKGBUILD b/libre/kio/PKGBUILD
index 5aa90490f..e442b399b 100644
--- a/libre/kio/PKGBUILD
+++ b/libre/kio/PKGBUILD
@@ -10,7 +10,7 @@
# - removed support for not freedom-respecting search engines
pkgname=kio
-pkgver=5.70.0
+pkgver=5.71.0
pkgrel=1
pkgrel+=.parabola1
pkgdesc='Resource and network access abstraction'
@@ -26,17 +26,16 @@ optdepends=('kio-extras: extra protocols support (sftp, fish and more)' 'kdoctoo
groups=(kf5)
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
source+=(duckduckgo_{html,lite}.desktop)
-sha256sums=('0a99acc697f07eb3c27176c26f8904cb409628bfca46e2a1b0633cdcf84e4ce8'
+sha256sums=('b972c8dede50be3e89babb5a536054759db2a87003e6df770c598c7c1c94b8d6'
'SKIP'
'31910ab7393e67609f15e04a57f6406f63e6dae58b01bce0787741bc5958f292'
'40466a9dad7075f2525e9e024720da7d7b49a22892b6fca8b81cc0e6408d2f7d')
validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
prepare() {
- mkdir -p build
+ cd $pkgname-$pkgver
# Removing search providers
- cd $pkgname-$pkgver
rm -v src/urifilters/ikws/searchproviders/*.desktop
# Adding DuckDuckGo HTML and DuckDuckGo Lite
@@ -45,15 +44,13 @@ prepare() {
}
build() {
- cd build
- cmake ../$pkgname-$pkgver \
+ cmake -B build -S $pkgname-$pkgver \
-DCMAKE_INSTALL_LIBEXECDIR=lib \
-DBUILD_TESTING=OFF \
-DBUILD_QCH=ON
- make
+ cmake --build build
}
package() {
- cd build
- make DESTDIR="$pkgdir" install
+ DESTDIR="$pkgdir" cmake --install build
}