summaryrefslogtreecommitdiff
path: root/tools/installer_ng_stable/makeclean.bat
blob: 3415ecd02b3371dc5f372ab4715a778f3c61e225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@echo off
rem Get version
if not exist tmp mkdir tmp
Tools\wget.exe -O tmp\build.no http://svn.miranda-ng.org/main/trunk/build/build.no
pushd tmp
for /F "tokens=1,2 delims= " %%i in (build.no) do set ver1=%%i.%%j
for /F "tokens=3 delims= " %%k in (build.no) do (set /a "ver2=%%k-1")
set Mirver=%ver1%.%ver2%
popd
rem end

rem Download and extract compiler
Tools\wget.exe -O tmp\InnoSetup5.7z http://miranda-ng.org/distr/installer/InnoSetup5.7z
..\7-zip\7z.exe x tmp\InnoSetup5.7z -y -oTools
rem end

rem Set compiler variables
set Compile32=Tools\InnoSetup5\ISCC.exe /Dptx86 /DAppVer=%MirVer% "InnoNG_32\MirandaNG.iss"
set Compile64=Tools\InnoSetup5\ISCC.exe /DAppVer=%MirVer% "InnoNG_64\MirandaNG.iss"
rem end

rem Get archives if needed
if not exist InnoNG_32 call createstructure.bat
if not exist InnoNG_64 call createstructure.bat
rem end

rem Make
"%ProgramFiles%\%Compile32%
"%ProgramFiles%\%Compile64%
rem end

rem Clean
call cleanup.bat
rem end