contrib/nextcloud-client/Pkgfile

23 lines
625 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 qtwebkit
2019-06-11 23:45:47 +02:00
name=nextcloud-client
2019-10-14 23:46:57 +02:00
version=2.6.0.1
2019-06-11 23:45:47 +02:00
release=1
2019-09-27 20:10:21 +02:00
source=(https://github.com/nextcloud/desktop/archive/v2.6.0/$name-$version.tar.gz)
2019-06-11 23:45:47 +02:00
build() {
2019-10-14 23:46:57 +02:00
cd desktop-2.6.0
2019-09-27 20:10:21 +02:00
mkdir build ; cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
2019-06-11 23:45:47 +02:00
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
2019-09-27 20:10:21 +02:00
-DCMAKE_INSTALL_SYSCONFDIR=/etc/nextcloud \
-DNO_SHIBBOLETH=1
2019-06-11 23:45:47 +02:00
make
make DESTDIR=$PKG install
rm -fr $PKG/usr/share/nextcloud/i18n
}