75 lines
2.2 KiB
Bash
75 lines
2.2 KiB
Bash
# Template file for 'nextcloud-client'
|
|
pkgname=nextcloud-client
|
|
version=2.6.2
|
|
revision=2
|
|
wrksrc="desktop-${version}"
|
|
build_style=cmake
|
|
configure_args="-Wno-dev"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="qt5-tools-devel qt5-declarative-devel qt5-webchannel-devel
|
|
qt5-location-devel qtkeychain-qt5-devel sqlite-devel libcloudproviders-devel
|
|
$(vopt_if dolphin 'extra-cmake-modules kio-devel')"
|
|
conf_files="/etc/Nextcloud/sync-exclude.lst"
|
|
short_desc="NextCloud Desktop client"
|
|
maintainer="yopito <pierre.bourgin@free.fr>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://nextcloud.com/clients/"
|
|
distfiles="https://github.com/nextcloud/desktop/archive/v${version}.tar.gz"
|
|
checksum=bbcb6593134836226640b108da7ad3db061417681e2d843bc371b1d697fb0551
|
|
|
|
build_options="dolphin shibboleth webengine"
|
|
desc_option_dolphin="Build KDE dolphin support"
|
|
desc_option_shibboleth="Build Shibboleth support (needs Qt5 WebKit)"
|
|
desc_option_webengine="Build Qt5 WebEngine support"
|
|
build_options_default="dolphin shibboleth"
|
|
|
|
if [ "$XBPS_TARGET_ENDIAN" = "le" ]; then
|
|
if [ "$XBPS_WORDSIZE" = "$XBPS_TARGET_WORDSIZE" ]; then
|
|
build_options_default+=" webengine"
|
|
fi
|
|
fi
|
|
|
|
if [ "$build_option_shibboleth" ]; then
|
|
makedepends+=" qt5-webkit-devel"
|
|
else
|
|
configure_args+=" -DNO_SHIBBOLETH=TRUE"
|
|
fi
|
|
|
|
if [ "$build_option_webengine" ]; then
|
|
makedepends+=" qt5-webengine-devel"
|
|
fi
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" qt5-qmake qt5-host-tools qt5-tools"
|
|
# provides desktoptojson
|
|
hostmakedepends+=" $(vopt_if dolphin 'kcoreaddons')"
|
|
fi
|
|
|
|
subpackages="$(vopt_if dolphin 'nextcloud-client-dolphin') nextcloud-client-devel"
|
|
|
|
post_patch() {
|
|
[ "$build_option_webengine" ] && return 0
|
|
|
|
msg_normal "Applying no-webengine.patch\n"
|
|
patch -sNp1 -i ${FILESDIR}/no-webengine.patch
|
|
}
|
|
|
|
nextcloud-client-dolphin_package() {
|
|
short_desc+=" - KDE dolphin integration"
|
|
depends="nextcloud-client>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/lib/libnextclouddolphinpluginhelper.so
|
|
vmove usr/lib/qt5
|
|
vmove usr/share/kservices5
|
|
}
|
|
}
|
|
|
|
nextcloud-client-devel_package() {
|
|
depends="nextcloud-client>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/libnextcloudsync.so
|
|
vmove "usr/lib/nextcloud/*.so"
|
|
}
|
|
}
|