mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
37 lines
1004 B
Bash
37 lines
1004 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kio-extras
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=kio-extras
|
|
pkgver=${_kdever}
|
|
pkgrel=2
|
|
pkgdesc="Additional components to increase the functionality of KIO"
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/kde/workspace/kio-extras'
|
|
license=('LGPL')
|
|
depends=('kdelibs4support' 'khtml' 'kdnssd' 'libssh' 'smbclient'
|
|
'exiv2' 'openexr' 'openslp' 'libmtp' 'kpty')
|
|
makedepends=('extra-cmake-modules' 'kdoctools' 'python3')
|
|
groups=('kde' 'kde-applications' 'kdenetwork')
|
|
options=("debug")
|
|
install=${pkgname}.install
|
|
conflicts=('kio-mtp-git')
|
|
replaces=('kio-mtp-git')
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver} \
|
|
-DPYTHON_EXECUTABLE=/usr/bin/python3
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|