contrib/nextcloud-client/Pkgfile

28 lines
899 B
Plaintext

# Description: Nextcloud desktop client
# URL: https://nextcloud.com/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libevent pciutils qtkeychain qtwebengine
name=nextcloud-client
version=2.6.4
release=1
source=(https://github.com/nextcloud/desktop/archive/v$version/$name-$version.tar.gz)
build() {
cd desktop-$version
mkdir build ; cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_SYSCONFDIR=/usr/etc/nextcloud \
-DNO_SHIBBOLETH=1
make
make DESTDIR=$PKG install
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
}