forked from mia/Aegisub
6e0706939e
Untested, probably still needs work
22 lines
1.1 KiB
Batchfile
22 lines
1.1 KiB
Batchfile
@echo off
|
|
|
|
echo Gathering files
|
|
xcopy ..\..\..\automation\autoload\*.lua aegisub-portable\automation\autoload\ > NUL
|
|
xcopy ..\..\..\automation\demos\*.lua aegisub-portable\automation\demos\ > NUL
|
|
xcopy ..\..\..\automation\include\*.lua aegisub-portable\automation\include\ > NUL
|
|
xcopy ..\..\..\bin\aegisub64.exe aegisub-portable\ > NUL
|
|
xcopy ..\..\..\bin\ffms2_64.dll aegisub-portable\ > NUL
|
|
xcopy ..\src\ASSDraw3.chm aegisub-portable\ > NUL
|
|
xcopy ..\src\ASSDraw3.exe aegisub-portable\ > NUL
|
|
xcopy ..\src\dictionaries\en_US.aff aegisub-portable\dictionaries\ > NUL
|
|
xcopy ..\src\dictionaries\en_US.dic aegisub-portable\dictionaries\ > NUL
|
|
xcopy ..\src\vsfilter-aegisub64.dll aegisub-portable\csri\ > NUL
|
|
xcopy ..\src\x64\Microsoft.VC90.CRT\* aegisub-portable\Microsoft.VC90.CRT\ > NUL
|
|
xcopy config.json aegisub-portable\ > NUL
|
|
|
|
echo Creating SFX
|
|
del ..\output\aegisub-3.1.0-portable-64.exe
|
|
WinRAR a -sfx -s -m5 -ep1 -r -zportable-comment.txt -iimgside-logo.bmp -iiconicon.ico ..\output\aegisub-3.1.0-portable-64.exe aegisub-portable\
|
|
|
|
echo Removing temp dir
|
|
rmdir /S /Q aegisub-portable > NUL
|