gajim-plural/build.bat

25 lines
596 B
Batchfile
Raw Normal View History

2012-09-09 12:28:56 +02:00
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
2012-09-09 12:28:56 +02:00
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
2012-09-09 12:28:56 +02:00
c:\python34\python.exe setup_win32.py build_exe
2012-09-09 12:28:56 +02:00
move build\exe.win32-3.4 .
rmdir build
rename exe.win32-3.4 build
2012-09-09 12:28:56 +02:00
REM for snarl plugin
xcopy ..\win32com build\win32com /e /i
2012-09-09 12:28:56 +02:00
2014-03-15 09:53:20 +01:00
"C:\Program Files (x86)\NSIS\makensis" gajim.nsi
2012-09-09 12:28:56 +02:00
cd ..