]>
Commit | Line | Data |
---|---|---|
09740c31 RD |
1 | @echo off |
2 | ||
3 | rem **** Make a directory to build up a distribution tree | |
4 | md _distrib_zip | |
5 | md _distrib_zip\wxPython-%1 | |
6 | ||
7 | cd _distrib_zip | |
8 | ||
9 | rem **** copy the docs into the tree | |
10 | md wxPython-%1\docs | |
11 | md wxPython-%1\docs\wx | |
12 | md wxPython-%1\docs\ogl | |
13 | copy %WXWIN%\docs\html\wx\*.* wxPython-%1\docs\wx | |
14 | copy wxPython-%1\docs\wx\wx.htm wxPython-%1\docs\wx\index.htm | |
15 | copy %WXWIN%\docs\html\ogl\*.* wxPython-%1\docs\ogl | |
16 | copy wxPython-%1\docs\ogl\ogl.htm wxPython-%1\docs\ogl\index.htm | |
17 | ||
18 | rem **** zip up the docs | |
19 | rem zip -r ..\distrib\wxPython-docs-%1.zip wxPython-%1\docs | |
20 | tar cvf ..\dist\wxPythonDocs-%1.tar wxPython-%1 | |
21 | gzip -9 ..\dist\wxPythonDocs-%1.tar | |
22 | ||
23 | ||
24 | rem **** Cleanup | |
25 | cd .. | |
26 | del /sxzy _distrib_zip |