5.6.3 - unpack tar gz with 7z

This commit is contained in:
kleuter 2017-12-04 21:42:50 +01:00
parent bc1b9d78b2
commit 72e5801856
2 changed files with 3 additions and 1 deletions

BIN
5.6.3/7z.exe Normal file

Binary file not shown.

View File

@ -20,8 +20,10 @@ open BAT, '>', $batfile;
printLineToBat ("CALL \"C:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\VC\\vcvarsall.bat\" $arch");
printLineToBat ("cd qtbase");
printLineToBat ("wget $openssl_download");
printLineToBat ("tar -xvzf openssl-$openssl_version.tar.gz");
printLineToBat ("7z x openssl-$openssl_version.tar.gz");
printLineToBat ("7z x openssl-$openssl_version.tar");
printLineToBat ("rm openssl-$openssl_version.tar.gz");
printLineToBat ("rm openssl-$openssl_version.tar");
printLineToBat ("cd $openssl_dir");
# build debug
printLineToBat ("perl Configure no-asm no-shared --prefix=%cd%\\Debug --openssldir=%cd%\\Debug debug-VC-$openssl_arch");