This repository has been archived on 2025-04-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
gajim-0.16.9/build.bat

19 lines
463 B
Batchfile
Raw Permalink Normal View History

2025-04-02 10:43:46 -07:00
rmdir /S /Q ..\gajim_built
xcopy . ..\gajim_built /e /i
xcopy ..\gajim-plugins\plugin_installer ..\gajim_built\plugins\plugin_installer /e /i
cd ..\gajim_built
c:\python27\python.exe setup_win32.py build_exe
move build\exe.win32-2.7 .
rename exe.win32-2.7 bin
xcopy ..\gtk bin\gtk /e /i
for %%l in (po\*.po) do mkdir po\%%~nl & mkdir po\%%~nl\LC_MESSAGES & msgfmt -o po\%%~nl\LC_MESSAGES\gajim.mo %%l
"C:\Program Files (x86)\NSIS\makensis" gajim.nsi
cd ..