contrib/nextcloud-client/Pkgfile

28 lines
951 B
Plaintext
Raw Normal View History

2019-06-11 23:45:47 +02:00
# Description: Nextcloud desktop client
# URL: https://nextcloud.com/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libevent pciutils qtkeychain qtwebengine
# Optional: doxygen kde5
2019-06-11 23:45:47 +02:00
name=nextcloud-client
2020-10-30 15:50:23 +01:00
version=3.0.3
2020-08-29 16:41:56 +02:00
release=1
source=(https://github.com/nextcloud/desktop/archive/v$version/$name-$version-$release.tar.gz)
2019-06-11 23:45:47 +02:00
build() {
2020-07-10 00:23:04 +02:00
cmake -Sdesktop-$version -Bbuild -GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \
2019-06-11 23:45:47 +02:00
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_SYSCONFDIR=/usr/etc/nextcloud \
2019-09-27 20:10:21 +02:00
-DNO_SHIBBOLETH=1
2020-07-10 00:23:04 +02:00
cmake --build build
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/share/nextcloud
# there are no ports for nautilus nor nemo in CRUX atm
rm -r $PKG/usr/share/{nautilus-python,nemo-python}
# there is caja for mate though, only make it available if it's installed
[[ ! -e /usr/lib/pkgconfig/libcaja-extension.pc ]] && rm -r $PKG/usr/share/caja-python || true
2019-06-11 23:45:47 +02:00
}