diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-12-11 18:40:33 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-12-11 18:40:33 +0100 |
commit | 4056f58add7bc6c10b89895626be6235b105a079 (patch) | |
tree | 8225b1766d3becf6af0c5ee748ff974a65f86e6f /doc/html/LinuxPrepAndBuild.sh | |
parent | e04bf339f72db3a30acb76f6d6f066794862e1d2 (diff) | |
download | VeraCrypt-4056f58add7bc6c10b89895626be6235b105a079.tar.gz VeraCrypt-4056f58add7bc6c10b89895626be6235b105a079.zip |
Documentation: remove usage of CSS collapsible to avoid breaking CHM generation. Add new entries to CHM. Remove example script file since its content is described inline in the documentation
We need to generate CHM from the same HTML files as the documentation and so we are limited by CHM compatibility
Diffstat (limited to 'doc/html/LinuxPrepAndBuild.sh')
-rw-r--r-- | doc/html/LinuxPrepAndBuild.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/doc/html/LinuxPrepAndBuild.sh b/doc/html/LinuxPrepAndBuild.sh deleted file mode 100644 index 58329b8f..00000000 --- a/doc/html/LinuxPrepAndBuild.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/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 |