« Nextcloud client : compilation sous ubuntu » : différence entre les versions
Aller à la navigation
Aller à la recherche
(Page créée avec « <pre> sudo apt install cmake git build-essential libssl-dev libsqlite3-dev libqt5webkit5-dev libqt5keychain0 qtdeclarative5-dev qt5keychain-dev </pre> Pour l'intégration... ») |
Aucun résumé des modifications |
||
(4 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
[[category:desktop]] | |||
<pre> | <pre> | ||
sudo apt install cmake git build-essential libssl-dev libsqlite3-dev libqt5webkit5-dev libqt5keychain0 qtdeclarative5-dev qt5keychain-dev | sudo apt install cmake git build-essential libssl-dev libsqlite3-dev libqt5webkit5-dev libqt5keychain0 qtdeclarative5-dev qt5keychain-dev | ||
Ligne 12 : | Ligne 13 : | ||
cd nextcloud-client | cd nextcloud-client | ||
git submodule update --init --recursive | git submodule update --init --recursive | ||
mkdir build | cd .. | ||
cd build | mkdir build | ||
cmake -D OEM_THEME_DIR=../nextcloudtheme ../client -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_SYSCONFDIR=/etc/nextcloud-client | cd build | ||
cmake -D OEM_THEME_DIR=`pwd`/../nextcloudtheme ../client -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_SYSCONFDIR=/etc/nextcloud-client | |||
make | make | ||
make install | make install | ||
</pre> | </pre> |
Dernière version du 7 juillet 2017 à 04:33
sudo apt install cmake git build-essential libssl-dev libsqlite3-dev libqt5webkit5-dev libqt5keychain0 qtdeclarative5-dev qt5keychain-dev
Pour l'intégration dolphin :
sudo apt install libkf5config-dev libkf5declarative-dev extra-cmake-modules
git clone https://github.com/nextcloud/client_theming.git nextcloud-client cd nextcloud-client git submodule update --init --recursive cd .. mkdir build cd build cmake -D OEM_THEME_DIR=`pwd`/../nextcloudtheme ../client -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_SYSCONFDIR=/etc/nextcloud-client make make install