mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 11:08:02 -06:00
Github PR: https://github.com/veracrypt/VeraCrypt/pull/953
* Create CompilingGuidelinerh
* Initial Upload Windows Compiling Guide
* Removed RIPEMD-160 from Product64.wxs. See commit from 21.03.2022
* Completed Win compiling guideline
* Added link to detailed compiling guide
* Added link to detailed compiling guide
* Restructured docu main page
* Added sourceforge link
* Added compiling guide for Linux
* References to detailed instructions
* Revert "Removed RIPEMD-160 from Product64.wxs. See commit from 21.03.2022"
This reverts commit 024ae2a465.
* Correction of a div box
21 lines
488 B
Bash
21 lines
488 B
Bash
#!/bin/bash
|
|
|
|
sudo apt update
|
|
sudo apt install -y build-essential yasm pkg-config libgtk-3-dev
|
|
wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.0/wxWidgets-3.2.0.tar.bz2
|
|
tar -xf wxWidgets-3.2.0.tar.bz2
|
|
cd wxWidgets-3.2.0
|
|
mkdir gtk-build
|
|
cd gtk-build
|
|
../configure
|
|
make
|
|
sudo make install
|
|
sudo ldconfig
|
|
cd ../..
|
|
rm -r wxWidgets-3.2.0
|
|
rm wxWidgets-3.2.0.tar.bz2
|
|
sudo apt install -y libfuse-dev git
|
|
git clone https://github.com/veracrypt/VeraCrypt.git
|
|
cd ~/VeraCrypt/src
|
|
make
|