25 lines
596 B
Batchfile
25 lines
596 B
Batchfile
rmdir /S /Q gajim_built
|
|
|
|
mkdir gajim_built
|
|
hg archive gajim_built
|
|
xcopy ..\gajim-plugins\plugin_installer gajim_built\plugins\plugin_installer /e /i
|
|
|
|
copy msgfmt.exe gajim_built
|
|
copy msvcr100.dll gajim_built
|
|
|
|
cd gajim_built
|
|
|
|
for %%l in (po\*.po) do mkdir po\%%~nl & mkdir po\%%~nl\LC_MESSAGES & msgfmt -o po\%%~nl\LC_MESSAGES\gajim.mo %%l
|
|
|
|
c:\python34\python.exe setup_win32.py build_exe
|
|
|
|
move build\exe.win32-3.4 .
|
|
rmdir build
|
|
rename exe.win32-3.4 build
|
|
|
|
REM for snarl plugin
|
|
xcopy ..\win32com build\win32com /e /i
|
|
|
|
"C:\Program Files (x86)\NSIS\makensis" gajim.nsi
|
|
|
|
cd .. |