2015-02-23 07:23:41 +08:00
|
|
|
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kio-extras
|
2015-08-11 05:26:57 +08:00
|
|
|
source ../kdeapps.conf
|
2014-06-22 20:22:30 +08:00
|
|
|
|
|
|
|
pkgname=kio-extras
|
2015-08-11 05:26:57 +08:00
|
|
|
pkgver=${_kdever}
|
2016-05-13 04:57:22 +08:00
|
|
|
pkgrel=1
|
2015-02-23 07:23:41 +08:00
|
|
|
pkgdesc="Additional components to increase the functionality of KIO"
|
2014-10-23 03:29:25 +08:00
|
|
|
arch=('x86_64')
|
2015-02-23 07:23:41 +08:00
|
|
|
url='https://projects.kde.org/projects/kde/workspace/kio-extras'
|
2014-06-22 20:22:30 +08:00
|
|
|
license=('LGPL')
|
2015-08-11 05:26:57 +08:00
|
|
|
depends=('kdelibs4support' 'khtml' 'kdnssd' 'libssh' 'smbclient'
|
2016-03-29 03:54:44 +08:00
|
|
|
'exiv2' 'openexr' 'openslp' 'libmtp' 'kpty' 'kactivities')
|
2015-01-15 05:23:15 +08:00
|
|
|
makedepends=('extra-cmake-modules' 'kdoctools' 'python3')
|
2015-08-11 05:26:57 +08:00
|
|
|
groups=('kde' 'kde-applications' 'kdenetwork')
|
2014-06-22 20:22:30 +08:00
|
|
|
options=("debug")
|
2015-01-15 06:56:56 +08:00
|
|
|
install=${pkgname}.install
|
2016-02-20 03:39:59 +08:00
|
|
|
conflicts=('kio-mtp-git')
|
|
|
|
replaces=('kio-mtp-git')
|
2016-12-21 05:48:24 +08:00
|
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
|
|
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
|
|
|
|
'SKIP')
|
2017-08-11 00:14:23 +08:00
|
|
|
validpgpkeys=(${Avalidpgpkeys[@]})
|
2014-06-22 20:22:30 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
2014-12-01 13:27:04 +08:00
|
|
|
cmake_kf5 ../${pkgname}-${pkgver} \
|
2015-02-24 05:41:32 +08:00
|
|
|
-DPYTHON_EXECUTABLE=/usr/bin/python3
|
2014-06-22 20:22:30 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2015-08-11 05:26:57 +08:00
|
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2014-06-22 20:22:30 +08:00
|
|
|
}
|