blob: 48bc4a1120ca6d39584e99cfd2637e7b39d18470 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
@echo off
rem Get version
if not exist tmp mkdir tmp
if exist tmp\build.no goto mkver
copy /V /Y ..\..\build\build.no tmp\build.no
:mkver
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 Create directories and copy script
mkdir InnoNG_32
mkdir InnoNG_64
copy /V /Y MirandaNG.iss InnoNG_32\
copy /V /Y MirandaNG.iss InnoNG_64\
xcopy Common\* InnoNG_32 /I /S /V /Y
xcopy Common\* InnoNG_64 /I /S /V /Y
rem end
rem Download
curl.exe -o tmp\InnoSetup5.7z https://miranda-ng.org/distr/installer/InnoSetup5.7z
curl.exe -o tmp\miranda-ng-v%MirVer%.7z https://miranda-ng.org/distr/stable/miranda-ng-v%MirVer%.7z
curl.exe -o tmp\miranda-ng-v%MirVer%_x64.7z https://miranda-ng.org/distr/stable/miranda-ng-v%MirVer%_x64.7z
curl.exe -o tmp\MNG_Sounds.7z https://miranda-ng.org/distr/addons/Sounds/MNG_Sounds.7z
curl.exe -o tmp\clist_blind_x32.zip https://miranda-ng.org/distr/stable/x32/Plugins/clist_blind.zip
curl.exe -o tmp\clist_blind_x64.zip https://miranda-ng.org/distr/stable/x64/Plugins/clist_blind.zip
curl.exe -o tmp\clist_nicer_x32.zip https://miranda-ng.org/distr/stable/x32/Plugins/clist_nicer.zip
curl.exe -o tmp\clist_nicer_x64.zip https://miranda-ng.org/distr/stable/x64/Plugins/clist_nicer.zip
curl.exe -o tmp\cln_skinedit_x32.zip https://miranda-ng.org/distr/stable/x32/Plugins/cln_skinedit.zip
curl.exe -o tmp\cln_skinedit_x64.zip https://miranda-ng.org/distr/stable/x64/Plugins/cln_skinedit.zip
curl.exe -o tmp\scriver_x32.zip https://miranda-ng.org/distr/stable/x32/Plugins/scriver.zip
curl.exe -o tmp\scriver_x64.zip https://miranda-ng.org/distr/stable/x64/Plugins/scriver.zip
curl.exe -o tmp\langpack_czech.zip https://miranda-ng.org/distr/stable/x32/Languages/langpack_czech.zip
curl.exe -o tmp\langpack_german.zip https://miranda-ng.org/distr/stable/x32/Languages/langpack_german.zip
curl.exe -o tmp\langpack_polish.zip https://miranda-ng.org/distr/stable/x32/Languages/langpack_polish.zip
curl.exe -o tmp\langpack_russian.zip https://miranda-ng.org/distr/stable/x32/Languages/langpack_russian.zip
rem end
rem Extract
%CompressIt% x tmp\InnoSetup5.7z -y -oTools
%CompressIt% x tmp\miranda-ng-v%MirVer%.7z -y -oInnoNG_32\Files
%CompressIt% x tmp\clist_blind_x32.zip -y -oInnoNG_32\Files
%CompressIt% x tmp\clist_nicer_x32.zip -y -oInnoNG_32\Files
%CompressIt% x tmp\cln_skinedit_x32.zip -y -oInnoNG_32\Files
%CompressIt% x tmp\scriver_x32.zip -y -oInnoNG_32\Files
%CompressIt% x tmp\miranda-ng-v%MirVer%_x64.7z -y -oInnoNG_64\Files
%CompressIt% x tmp\clist_blind_x64.zip -y -oInnoNG_64\Files
%CompressIt% x tmp\clist_nicer_x64.zip -y -oInnoNG_64\Files
%CompressIt% x tmp\cln_skinedit_x64.zip -y -oInnoNG_64\Files
%CompressIt% x tmp\scriver_x64.zip -y -oInnoNG_64\Files
%CompressIt% x tmp\MNG_Sounds.7z -y -oInnoNG_32\Files
%CompressIt% x tmp\MNG_Sounds.7z -y -oInnoNG_64\Files
%CompressIt% x tmp\lang*.zip -y -oInnoNG_32\Files
%CompressIt% x tmp\lang*.zip -y -oInnoNG_64\Files
rem end
|