KeepassXC/Kompilieren: Unterschied zwischen den Versionen

Aus Foxwiki
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 8: Zeile 8:
*Auf der Konsole: <code>cd Downloads</code>
*Auf der Konsole: <code>cd Downloads</code>
*Danach tue schrittweise folgendes:
*Danach tue schrittweise folgendes:
tar -xJf keepassxc-2.4.1.-src.tar.xz
tar -xJf keepassxc-2.4.1.-src.tar.xz
cd keepassxc-2.4.1.
cd keepassxc-2.4.1.
less INSTALL.md
less INSTALL.md
Auf der Seite https://github.com/keepassxreboot/keepassxc/wiki/Set-up-Build-Environment-on-Linux
Auf der Seite https://github.com/keepassxreboot/keepassxc/wiki/Set-up-Build-Environment-on-Linux sieht man, was man zu installieren hat.
*apt install build-essential cmake g++
apt install build-essential cmake g++
*apt install qtbase5-dev qttools5-dev qttools5-dev-tools libqt5svg5-dev \
apt install qtbase5-dev qttools5-dev qttools5-dev-tools libqt5svg5-dev \
     libgcrypt20-dev libargon2-0-dev libqrencode-dev zlib1g-dev
     libgcrypt20-dev libargon2-0-dev libqrencode-dev zlib1g-dev
*apt install libxi-dev libxtst-dev libqt5x11extras5-dev libyubikey-dev \
apt install libxi-dev libxtst-dev libqt5x11extras5-dev libyubikey-dev \
     libykpers-1-dev libsodium-dev libcurl4-openssl-dev libquazip5-dev
     libykpers-1-dev libsodium-dev libcurl4-openssl-dev libquazip5-dev
*mkdir build  
mkdir build  
*cd build
cd build
*cmake -DWITH_XC_ALL=ON ..
cmake -DWITH_XC_ALL=ON ..
*make  
make  
*make install
make install

Version vom 17. Mai 2019, 11:38 Uhr

Beschreibung

KeePassXC kompilieren (install) aus einer fremden Quelle, die nicht von der Repository von Debian stammt.(Die install bitte alles mit root)

Vorgehensweise

  • Gehen sie auf die Seite Keepassxc.org/download
  • Über die Seite "source code" "source code release" downloaden
  • Über die Konsole mit dem Befehl apt purge keepassxc alte Version löschen
  • Auf der Konsole: cd Downloads
  • Danach tue schrittweise folgendes:
tar -xJf keepassxc-2.4.1.-src.tar.xz
cd keepassxc-2.4.1.
less INSTALL.md

Auf der Seite https://github.com/keepassxreboot/keepassxc/wiki/Set-up-Build-Environment-on-Linux sieht man, was man zu installieren hat.

apt install build-essential cmake g++
apt install qtbase5-dev qttools5-dev qttools5-dev-tools libqt5svg5-dev \
   libgcrypt20-dev libargon2-0-dev libqrencode-dev zlib1g-dev
apt install libxi-dev libxtst-dev libqt5x11extras5-dev libyubikey-dev \
    libykpers-1-dev libsodium-dev libcurl4-openssl-dev libquazip5-dev
mkdir build 
cd build
cmake -DWITH_XC_ALL=ON ..
make 
make install