diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-04 22:09:42 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-04 22:09:42 +0000 |
commit | 801367d0b94426c1160f05aeb6fea70938085894 (patch) | |
tree | c8f60e1988ae7e43d4addb8ba2138d8880dfdf9b /plugins/CmdLine/pack.bat | |
parent | 65e002b63efdb00571d0ba4ec1a73b14e1d7d3a0 (diff) |
CmdLine added, not adopted yet
git-svn-id: http://svn.miranda-ng.org/main/trunk@764 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CmdLine/pack.bat')
-rw-r--r-- | plugins/CmdLine/pack.bat | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/CmdLine/pack.bat b/plugins/CmdLine/pack.bat new file mode 100644 index 0000000000..38411bd994 --- /dev/null +++ b/plugins/CmdLine/pack.bat @@ -0,0 +1,18 @@ +if NOT EXIST "plugins" (
+ mkdir "plugins"
+)
+
+xcopy "CmdLine\win32\Release\*.dll" "plugins\*"
+
+for /F "tokens=4-8* delims=. " %%i in (docs\CmdLine_readme.txt) do (call :Pack %%i %%j %%k %%l; exit)
+
+:Pack
+d:\usr\PowerArchiver\pacl\pacomp.exe -a -c2 "CmdLine %1.%2.%3.%4 x32.zip" @files_release.txt
+d:\usr\PowerArchiver\pacl\pacomp.exe -p -a -c2 "CmdLine %1.%2.%3.%4 x32.zip" docs\*.* *.caca
+d:\usr\PowerArchiver\pacl\pacomp.exe -p -a -c2 "CmdLine %1.%2.%3.%4 x32.zip" plugins\*.* *.caca
+rmdir "plugins\" /Q /S
+call "pack symbols.bat" CmdLine executable\MimCmd %1.%2.%3.%4
+exit
+
+error:
+echo "Error packing CmdLine"
|