mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
70 lines
1.9 KiB
Batchfile
70 lines
1.9 KiB
Batchfile
|
|
rem The new package will be created from here
|
|
set BUILD_PACK_DIR=%TEMP%\doublecmd-release
|
|
|
|
rem The new package will be saved here
|
|
set PACK_DIR=%CD%\doublecmd-release
|
|
|
|
rem Prepare target dir
|
|
mkdir %PACK_DIR%
|
|
|
|
rem Get revision number
|
|
call src\platform\git2revisioninc.exe.cmd %CD%
|
|
echo %REVISION%> %PACK_DIR%\revision.txt
|
|
|
|
rem Read version number
|
|
for /f tokens^=2delims^=^" %%a in ('findstr "MajorVersionNr" src\doublecmd.lpi') do (set DC_MAJOR=%%a)
|
|
for /f tokens^=2delims^=^" %%a in ('findstr "MinorVersionNr" src\doublecmd.lpi') do (set DC_MINOR=%%a)
|
|
for /f tokens^=2delims^=^" %%a in ('findstr "RevisionNr" src\doublecmd.lpi') do (set DC_MICRO=%%a)
|
|
if [%DC_MINOR%] == [] set DC_MINOR=0
|
|
if [%DC_MICRO%] == [] set DC_MICRO=0
|
|
set DC_VER=%DC_MAJOR%.%DC_MINOR%.%DC_MICRO%
|
|
|
|
rem Change log
|
|
git log -n 10 --format="%%h %%al %%ai%%n%%s%%n" > %PACK_DIR%\changelog.txt
|
|
|
|
rem Get libraries
|
|
pushd install
|
|
curl -o windows.7z -L https://github.com/doublecmd/snapshots/raw/main/windows.7z
|
|
"%ProgramFiles%\7-Zip\7z.exe" x windows.7z
|
|
del /Q windows.7z
|
|
popd
|
|
|
|
rem Set processor architecture
|
|
set CPU_TARGET=i386
|
|
set OS_TARGET=win32
|
|
|
|
call :doublecmd
|
|
|
|
rem Set processor architecture
|
|
set CPU_TARGET=x86_64
|
|
set OS_TARGET=win64
|
|
|
|
call :doublecmd
|
|
|
|
GOTO:EOF
|
|
|
|
:doublecmd
|
|
rem Build all components of Double Commander
|
|
call build.bat darkwin
|
|
|
|
rem Copy libraries
|
|
copy install\windows\lib\%CPU_TARGET%\*.dll %CD%\
|
|
copy install\windows\lib\%CPU_TARGET%\winpty-agent.exe %CD%\
|
|
|
|
rem Prepare install dir
|
|
mkdir %BUILD_PACK_DIR%
|
|
|
|
rem Prepare install files
|
|
call install\windows\install.bat
|
|
|
|
rem Create *.7z archive
|
|
"%ProgramFiles%\7-Zip\7z.exe" a -mx9 %PACK_DIR%\doublecmd-%DC_VER%.r%REVISION%.%CPU_TARGET%-%OS_TARGET%.7z %DC_INSTALL_DIR%\*
|
|
|
|
rem Clean
|
|
del /Q *.dll
|
|
del /Q *.exe
|
|
call clean.bat
|
|
rm -rf %BUILD_PACK_DIR%
|
|
|
|
GOTO:EOF
|