contrib/nextcloud-client/Pkgfile

21 lines
595 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: graphite2 libevent libwebp pciutils qtkeychain qtwebengine qtwebkit
name=nextcloud-client
2019-07-22 16:11:53 +02:00
version=2.5.3
2019-06-11 23:45:47 +02:00
release=1
source=(https://github.com/nextcloud/desktop/archive/v$version/$name-$version.tar.gz)
build() {
cd desktop-$version
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_SYSCONFDIR=/etc/nextcloud
make
make DESTDIR=$PKG install
rm -fr $PKG/usr/share/nextcloud/i18n
}