blob: e2f4792eadef480c75e3f26931b28229714d8c3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@echo off
rem Download tools needed for compiling installer
mkdir util
if defined ProgramFiles(x86) (
wget -O util\7z920-x64.msi http://downloads.sourceforge.net/sevenzip/7z920-x64.msi
) else (
wget -O util\7z920.msi http://downloads.sourceforge.net/sevenzip/7z920.msi
)
wget -P util http://www.jrsoftware.org/download.php/ispack-unicode.exe
rem end
|