summaryrefslogtreecommitdiff
path: root/libre/kio
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2017-11-14 08:22:18 +0100
committerAndreas Grapentin <andreas@grapentin.org>2017-11-14 08:24:36 +0100
commit3114609250a61c9c95890884ee4d71b4af5a94b0 (patch)
treeab112431f19813b6cff7f1b6a91eac57c0f4f422 /libre/kio
parent1382d9c0ee402b5935e4764d64e088d3626addc9 (diff)
libre/kio: updated to 5.40.0
Diffstat (limited to 'libre/kio')
-rw-r--r--libre/kio/PKGBUILD42
1 files changed, 24 insertions, 18 deletions
diff --git a/libre/kio/PKGBUILD b/libre/kio/PKGBUILD
index 6a4f1de2b..f6e8565db 100644
--- a/libre/kio/PKGBUILD
+++ b/libre/kio/PKGBUILD
@@ -5,45 +5,50 @@
# Contributor (Arch): Andrea Scarpino <andrea@archlinux.org>
pkgname=kio
-pkgver=5.39.0
+
+pkgver=5.40.0
pkgrel=1.parabola1
-pkgdesc='Resource and network access abstraction, without non-privacy search engines'
-arch=('i686' 'x86_64' 'armv7h')
-url='https://community.kde.org/Frameworks'
-license=('LGPL')
-depends=('solid' 'kjobwidgets' 'kbookmarks' 'libxslt' 'kwallet' 'desktop-file-utils' 'opengl-driver')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'doxygen' 'qt5-tools')
+arch=(i686 x86_64 armv7h)
+
+pkgdesc="Resource and network access abstraction, without non-privacy search engines"
+url="https://community.kde.org/Frameworks"
+license=(LGPL)
+
+makedepends=(extra-cmake-modules kdoctools python doxygen qt5-tools)
+depends=(solid kjobwidgets kbookmarks libxslt kwallet desktop-file-utils opengl-driver)
optdepends=('kio-extras: extra protocols support (sftp, fish and more)'
'kdoctools: for the help kioslave'
'knetattach: to add new kio-remote entries')
-groups=('kf5')
-source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
- 'duckduckgo_html.desktop'
- 'duckduckgo_lite.desktop')
-sha256sums=('96cbea5aba34b4e1b0df5ecfb4aaf65ff324341fb00f99796146536557232f24'
+groups=(kf5)
+
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
+ "duckduckgo_html.desktop"
+ "duckduckgo_lite.desktop")
+sha256sums=('30ea0b231b995faaf4283b9c9ecfaffb589268f5d7b5b805f69ed95601ac389b'
'SKIP'
'31910ab7393e67609f15e04a57f6406f63e6dae58b01bce0787741bc5958f292'
'40466a9dad7075f2525e9e024720da7d7b49a22892b6fca8b81cc0e6408d2f7d')
-validpgpkeys=('53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB') # David Faure <faure@kde.org>
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
prepare() {
mkdir -p build
- cd ${pkgname}-${pkgver}
+ cd $pkgname-$pkgver
# Removing non-privacy search providers
rm -v src/urifilters/ikws/searchproviders/{7digital,acronym,amazon{,_mp3},amg,backports,baidu,bing,blip,cia,dbug,deb,duckduckgo{,_info,_shopping},facebook,ecosia,feedster,flickr,flickrcc,google,google_advanced,google_code,google_groups,google_images,google_lucky,google_maps,google_movie,google_news,google_shopping,imdb,jamendo,jeeves,magnatune,metacrawler,msdn,nl-telephone,nl-teletekst,python,rpmfind,tvtome,uspto,vimeo,voila,yahoo,yahoo_image,yahoo_local,yahoo_shopping,yahoo_video,youtube}.desktop
# Adding DuckDuckGo HTML
- cp -v "${srcdir}"/duckduckgo_html.desktop src/urifilters/ikws/searchproviders
+ cp -v "$srcdir/duckduckgo_html.desktop" src/urifilters/ikws/searchproviders
# Adding DuckDuckGo Lite
- cp -v "${srcdir}"/duckduckgo_lite.desktop src/urifilters/ikws/searchproviders
+ cp -v "$srcdir/duckduckgo_lite.desktop" src/urifilters/ikws/searchproviders
}
build() {
cd build
- cmake ../${pkgname}-${pkgver} \
+
+ cmake ../$pkgname-$pkgver \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \
@@ -55,5 +60,6 @@ build() {
package() {
cd build
- make DESTDIR="${pkgdir}" install
+
+ make DESTDIR="$pkgdir" install
}