diff options
-rw-r--r-- | libre/kio-extras/PKGBUILD | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/libre/kio-extras/PKGBUILD b/libre/kio-extras/PKGBUILD index 0d32e8f56..e4506f7b1 100644 --- a/libre/kio-extras/PKGBUILD +++ b/libre/kio-extras/PKGBUILD @@ -6,24 +6,28 @@ # Contributor (Arch): Andrea Scarpino <andrea@archlinux.org> pkgname=kio-extras -pkgver=17.08.2 + +pkgver=17.08.3 pkgrel=1.parabola1 -pkgdesc="Additional components to increase the functionality of KIO, without nonfree qt5-webengine support" arch=(i686 x86_64 armv7h) -url='https://www.kde.org/applications/internet/' + +pkgdesc="Additional components to increase the functionality of KIO, without nonfree qt5-webengine support" +url="https://www.kde.org/applications/internet/" license=(LGPL) -depends=('kio' 'kdnssd' 'libssh' 'smbclient' 'exiv2' 'openexr' 'openslp' 'libmtp' 'kpty' 'kactivities') -makedepends=('extra-cmake-modules' 'kdoctools' 'gperf' 'taglib' 'khtml') + +makedepends=(extra-cmake-modules kdoctools gperf taglib khtml) +depends=(kio kdnssd libssh smbclient exiv2 openexr openslp libmtp kpty kactivities) optdepends=('qt5-imageformats: thumbnails for additional image formats' 'kimageformats: thumbnails for additional image formats' 'taglib: audio file thumbnails' 'khtml: man kioslave') groups=(kde-applications kdenetwork) + source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('d6fc25a3f83750ca2af27768a7278314139bda8591df70b8f49b3d11379a74dd' +sha256sums=('4c268b22a50d7ed08dbb7211a34e562aa10c2cbb2c62fb4311a0f932c841013f' 'SKIP') -validpgpkeys=('CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7' # Albert Astals Cid <aacid@kde.org> - 'F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87') # Christoph Feck <cfeck@kde.org> +validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org> + F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org> prepare() { mkdir -p build @@ -31,6 +35,7 @@ prepare() { build() { cd build + cmake ../$pkgname-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ @@ -41,6 +46,7 @@ build() { package() { cd build + make DESTDIR="$pkgdir" install } |