128 lines
3.8 KiB
Batchfile
128 lines
3.8 KiB
Batchfile
@echo off
|
|
|
|
if "%1" == "" goto :notset
|
|
if "%2" == "" goto :notset
|
|
|
|
if exist %2\processhacker-*-*.* del %2\processhacker-*-*.*
|
|
|
|
rem Source distribution
|
|
|
|
if exist "%GITBIN%\git.exe". (
|
|
"%GITBIN%\git.exe" --git-dir=%1\.git --work-tree=%1 archive --format zip --output %2\processhacker-%MAJORVERSION%.%MINORVERSION%-src.zip master
|
|
if exist "%SEVENZIPBIN%\7z.exe" (
|
|
if exist %2\ProcessHacker2 rmdir /S /Q %2\ProcessHacker2
|
|
"%SEVENZIPBIN%\7z.exe" x %2\processhacker-%MAJORVERSION%.%MINORVERSION%-src.zip -o%2\ProcessHacker2
|
|
del %2\processhacker-%MAJORVERSION%.%MINORVERSION%-src.zip
|
|
echo #define PHAPP_VERSION_REVISION 0 > %2\ProcessHacker2\ProcessHacker\include\phapprev.h
|
|
"%SEVENZIPBIN%\7z.exe" a -mx9 %2\processhacker-%MAJORVERSION%.%MINORVERSION%-src.zip %2\ProcessHacker2\*
|
|
)
|
|
)
|
|
|
|
rem SDK distribution
|
|
|
|
if exist "%SEVENZIPBIN%\7z.exe" "%SEVENZIPBIN%\7z.exe" a -mx9 %2\processhacker-%MAJORVERSION%.%MINORVERSION%-sdk.zip %1\sdk\*
|
|
|
|
rem Binary distribution
|
|
|
|
if exist %2\bin rmdir /S /Q %2\bin
|
|
mkdir %2\bin
|
|
|
|
for %%a in (
|
|
CHANGELOG.txt
|
|
COPYRIGHT.txt
|
|
LICENSE.txt
|
|
) do copy %1\%%a %2\bin\%%a
|
|
copy %1\README.md %2\bin\README.txt
|
|
|
|
if "%SIGN%" == "1" (
|
|
call %1\build\internal\sign.cmd %1\bin\Release32\ProcessHacker.exe
|
|
call %1\build\internal\sign.cmd %1\bin\Release32\peview.exe
|
|
call %1\build\internal\sign.cmd %1\bin\Release64\ProcessHacker.exe
|
|
call %1\build\internal\sign.cmd %1\bin\Release64\peview.exe
|
|
)
|
|
|
|
if exist "%KPH_PRIVATE_KEY%". (
|
|
%1\tools\CustomSignTool\bin\Release32\CustomSignTool.exe sign -k "%KPH_PRIVATE_KEY%" -s %1\bin\Release32\ProcessHacker.sig %1\bin\Release32\ProcessHacker.exe
|
|
%1\tools\CustomSignTool\bin\Release32\CustomSignTool.exe sign -k "%KPH_PRIVATE_KEY%" -s %1\bin\Release64\ProcessHacker.sig %1\bin\Release64\ProcessHacker.exe
|
|
)
|
|
|
|
mkdir %2\bin\x86
|
|
copy %1\bin\Release32\ProcessHacker.exe %2\bin\x86\
|
|
copy %1\bin\Release32\ProcessHacker.sig %2\bin\x86\
|
|
copy %1\KProcessHacker\bin-signed\i386\kprocesshacker.sys %2\bin\x86\
|
|
copy %1\bin\Release32\peview.exe %2\bin\x86\
|
|
|
|
mkdir %2\bin\x64
|
|
copy %1\bin\Release64\ProcessHacker.exe %2\bin\x64\
|
|
copy %1\bin\Release64\ProcessHacker.sig %2\bin\x64\
|
|
copy %1\KProcessHacker\bin-signed\amd64\kprocesshacker.sys %2\bin\x64\
|
|
copy %1\bin\Release64\peview.exe %2\bin\x64\
|
|
|
|
mkdir %2\bin\x86\plugins
|
|
for %%a in (
|
|
DotNetTools
|
|
ExtendedNotifications
|
|
ExtendedServices
|
|
ExtendedTools
|
|
HardwareDevices
|
|
NetworkTools
|
|
OnlineChecks
|
|
SbieSupport
|
|
ToolStatus
|
|
Updater
|
|
UserNotes
|
|
WindowExplorer
|
|
) do (
|
|
if "%SIGN%" == "1" (
|
|
call %1\build\internal\sign.cmd %1\bin\Release32\plugins\%%a.dll sha2only
|
|
)
|
|
copy %1\bin\Release32\plugins\%%a.dll %2\bin\x86\plugins\%%a.dll
|
|
)
|
|
|
|
mkdir %2\bin\x64\plugins
|
|
for %%a in (
|
|
DotNetTools
|
|
ExtendedNotifications
|
|
ExtendedServices
|
|
ExtendedTools
|
|
HardwareDevices
|
|
NetworkTools
|
|
OnlineChecks
|
|
SbieSupport
|
|
ToolStatus
|
|
Updater
|
|
UserNotes
|
|
WindowExplorer
|
|
) do (
|
|
if "%SIGN%" == "1" (
|
|
call %1\build\internal\sign.cmd %1\bin\Release64\plugins\%%a.dll sha2only
|
|
)
|
|
copy %1\bin\Release64\plugins\%%a.dll %2\bin\x64\plugins\%%a.dll
|
|
)
|
|
|
|
if exist "%SEVENZIPBIN%\7z.exe" "%SEVENZIPBIN%\7z.exe" a -mx9 %2\processhacker-%MAJORVERSION%.%MINORVERSION%-bin.zip %2\bin\*
|
|
|
|
rem Installer distribution
|
|
|
|
if exist "%INNOBIN%\iscc.exe". (
|
|
pushd %1\build\Installer\
|
|
del *.exe
|
|
"%INNOBIN%\iscc.exe" Process_Hacker_installer.iss
|
|
popd
|
|
)
|
|
|
|
if exist %1\build\Installer\processhacker-%MAJORVERSION%.%MINORVERSION%-setup.exe (
|
|
copy %1\build\Installer\processhacker-%MAJORVERSION%.%MINORVERSION%-setup.exe %2\
|
|
if "%SIGN%" == "1" (
|
|
call %1\build\internal\sign.cmd %2\processhacker-%MAJORVERSION%.%MINORVERSION%-setup.exe
|
|
)
|
|
)
|
|
|
|
goto :end
|
|
|
|
:notset
|
|
echo Parameters not set.
|
|
pause
|
|
|
|
:end
|