1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
rem This script run from create_packages.bat
rem If you run it direct, set up %BUILD_PACK_DIR% first
rem Prepare all installation files
set DC_INSTALL_DIR=%BUILD_PACK_DIR%\doublecmd
mkdir %DC_INSTALL_DIR%
mkdir %DC_INSTALL_DIR%\plugins
rem WCX plugins directories
mkdir %DC_INSTALL_DIR%\plugins\wcx
mkdir %DC_INSTALL_DIR%\plugins\wcx\base64
mkdir %DC_INSTALL_DIR%\plugins\wcx\rpm
mkdir %DC_INSTALL_DIR%\plugins\wcx\sevenzip
mkdir %DC_INSTALL_DIR%\plugins\wcx\unrar
mkdir %DC_INSTALL_DIR%\plugins\wcx\zip
rem WDX plugins directories
mkdir %DC_INSTALL_DIR%\plugins\wdx
mkdir %DC_INSTALL_DIR%\plugins\wdx\scripts
mkdir %DC_INSTALL_DIR%\plugins\wdx\rpm_wdx
mkdir %DC_INSTALL_DIR%\plugins\wdx\deb_wdx
mkdir %DC_INSTALL_DIR%\plugins\wdx\audioinfo
rem WFX plugins directories
mkdir %DC_INSTALL_DIR%\plugins\wfx
mkdir %DC_INSTALL_DIR%\plugins\wfx\ftp
rem WLX plugins directories
mkdir %DC_INSTALL_DIR%\plugins\wlx
mkdir %DC_INSTALL_DIR%\plugins\wlx\richview
mkdir %DC_INSTALL_DIR%\plugins\wlx\preview
mkdir %DC_INSTALL_DIR%\plugins\wlx\wmp
mkdir %DC_INSTALL_DIR%\doc
rem Copy directories
xcopy /E default %DC_INSTALL_DIR%\default\
xcopy /E language %DC_INSTALL_DIR%\language\
xcopy /E pixmaps %DC_INSTALL_DIR%\pixmaps\
xcopy /E highlighters %DC_INSTALL_DIR%\highlighters\
rem Copy files
copy doc\*.txt %DC_INSTALL_DIR%\doc\
copy doublecmd.exe %DC_INSTALL_DIR%\
copy doublecmd.help %DC_INSTALL_DIR%\
copy doublecmd.zdli %DC_INSTALL_DIR%\
copy pinyin.tbl %DC_INSTALL_DIR%\
rem Copy libraries
copy *.sfx %DC_INSTALL_DIR%\
copy *.dll %DC_INSTALL_DIR%\
copy winpty-agent.exe %DC_INSTALL_DIR%\
rem Copy manifest
copy install\windows\doublecmd.visualelementsmanifest.xml %DC_INSTALL_DIR%\
rem copy plugins
rem WCX
copy plugins\wcx\base64\base64.wcx %DC_INSTALL_DIR%\plugins\wcx\base64\
copy plugins\wcx\rpm\rpm.wcx %DC_INSTALL_DIR%\plugins\wcx\rpm\
copy plugins\wcx\sevenzip\sevenzip.wcx %DC_INSTALL_DIR%\plugins\wcx\sevenzip\
copy plugins\wcx\unrar\unrar.wcx %DC_INSTALL_DIR%\plugins\wcx\unrar\
xcopy /E plugins\wcx\unrar\language %DC_INSTALL_DIR%\plugins\wcx\unrar\language\
copy plugins\wcx\zip\zip.wcx %DC_INSTALL_DIR%\plugins\wcx\zip\
xcopy /E plugins\wcx\zip\language %DC_INSTALL_DIR%\plugins\wcx\zip\language\
rem WDX
copy plugins\wdx\rpm_wdx\rpm_wdx.wdx %DC_INSTALL_DIR%\plugins\wdx\rpm_wdx\
copy plugins\wdx\deb_wdx\deb_wdx.wdx %DC_INSTALL_DIR%\plugins\wdx\deb_wdx\
copy plugins\wdx\scripts\* %DC_INSTALL_DIR%\plugins\wdx\scripts\
copy plugins\wdx\audioinfo\audioinfo.wdx %DC_INSTALL_DIR%\plugins\wdx\audioinfo\
copy plugins\wdx\audioinfo\audioinfo.lng %DC_INSTALL_DIR%\plugins\wdx\audioinfo\
rem WFX
copy plugins\wfx\ftp\ftp.wfx %DC_INSTALL_DIR%\plugins\wfx\ftp\
xcopy /E plugins\wfx\ftp\language %DC_INSTALL_DIR%\plugins\wfx\ftp\language\
rem WLX
copy plugins\wlx\richview\richview.wlx %DC_INSTALL_DIR%\plugins\wlx\richview\
copy plugins\wlx\preview\preview.wlx %DC_INSTALL_DIR%\plugins\wlx\preview\
copy plugins\wlx\wmp\wmp.wlx %DC_INSTALL_DIR%\plugins\wlx\wmp\
|