VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Build/build_cmake_deb.sh
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2019-12-21 02:45:08 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2019-12-21 02:46:50 +0100
commitf8beac6ebd00ac8b8e1286a34dfb52ef92d7e89c (patch)
tree302821f96fe5faafb528bf56a3b8765e70ffff85 /src/Build/build_cmake_deb.sh
parentde52f51f5bac0a25df78c071d9038f0232b45ca6 (diff)
downloadVeraCrypt-f8beac6ebd00ac8b8e1286a34dfb52ef92d7e89c.tar.gz
VeraCrypt-f8beac6ebd00ac8b8e1286a34dfb52ef92d7e89c.zip
Linux: Fix building and packaging console-only version to remove dependency on GTK
Diffstat (limited to 'src/Build/build_cmake_deb.sh')
-rwxr-xr-xsrc/Build/build_cmake_deb.sh17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/Build/build_cmake_deb.sh b/src/Build/build_cmake_deb.sh
index 3be23dda..7b546fdd 100755
--- a/src/Build/build_cmake_deb.sh
+++ b/src/Build/build_cmake_deb.sh
@@ -19,15 +19,24 @@ make clean || exit 1
19make || exit 1 19make || exit 1
20make install DESTDIR="$PARENTDIR/VeraCrypt_Setup/GUI" || exit 1 20make install DESTDIR="$PARENTDIR/VeraCrypt_Setup/GUI" || exit 1
21 21
22echo "Building console version of VeraCrypt for DEB using system wxWidgets" 22echo "Building console version of VeraCrypt for DEB using wxWidgets static libraries"
23 23
24# This is to avoid " Error: Unable to initialize GTK+, is DISPLAY set properly?" 24# This is to avoid " Error: Unable to initialize GTK+, is DISPLAY set properly?"
25# when building over SSH without X11 Forwarding 25# when building over SSH without X11 Forwarding
26# export DISPLAY=:0.0 26# export DISPLAY=:0.0
27 27
28make NOGUI=1 clean || exit 1 28# The sources of wxWidgets 3.0.4 must be extracted to the parent directory
29make NOGUI=1 || exit 1 29export WX_ROOT=$PARENTDIR/wxWidgets-3.0.4
30make NOGUI=1 install DESTDIR="$PARENTDIR/VeraCrypt_Setup/Console" || exit 1 30echo "Using wxWidgets sources in $WX_ROOT"
31
32# This will be the temporary wxWidgets directory
33export WX_BUILD_DIR=$PARENTDIR/wxBuildConsole
34
35# To build wxWidgets without GUI
36make WXSTATIC=1 NOGUI=1 wxbuild || exit 1
37make WXSTATIC=1 NOGUI=1 clean || exit 1
38make WXSTATIC=1 NOGUI=1 || exit 1
39make WXSTATIC=1 NOGUI=1 install DESTDIR="$PARENTDIR/VeraCrypt_Setup/Console" || exit 1
31 40
32echo "Creating VeraCrypt DEB packages" 41echo "Creating VeraCrypt DEB packages"
33 42