]>
Commit | Line | Data |
---|---|---|
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 | REM rem **** Copy the license files | |
8 | REM copy %WXWIN%\docs\gpl.txt _distrib_zip\wxPython-%1 | |
9 | REM copy %WXWIN%\docs\lgpl.txt _distrib_zip\wxPython-%1 | |
10 | REM copy %WXWIN%\docs\licence.txt _distrib_zip\wxPython-%1 | |
11 | REM copy %WXWIN%\docs\licendoc.txt _distrib_zip\wxPython-%1 | |
12 | REM copy %WXWIN%\docs\preamble.txt _distrib_zip\wxPython-%1 | |
13 | ||
14 | REM rem **** Make a zip fron the live files | |
15 | REM zip -@ -r _distrib_zip\temp.zip < distrib\wxPython.rsp | |
16 | ||
17 | REM rem **** Unzip it in our build dir | |
18 | REM cd _distrib_zip\wxPython-%1 | |
19 | REM unzip ..\temp.zip | |
20 | ||
21 | REM rem **** zip up the build dir | |
22 | REM cd .. | |
23 | REM zip -r ..\distrib\wxPython-src-%1.zip wxPython-%1 | |
24 | ||
25 | cd _distrib_zip | |
26 | ||
27 | rem **** copy the docs into the tree | |
28 | md wxPython-%1\docs | |
29 | md wxPython-%1\docs\wx | |
30 | md wxPython-%1\docs\ogl | |
31 | copy %WXWIN%\docs\html\wx\*.gif wxPython-%1\docs\wx | |
32 | copy %WXWIN%\docs\html\wx\*.htm wxPython-%1\docs\wx | |
33 | copy wxPython-%1\docs\wx\wx.htm wxPython-%1\docs\wx\index.htm | |
34 | copy %WXWIN%\docs\html\ogl\*.gif wxPython-%1\docs\ogl | |
35 | copy %WXWIN%\docs\html\ogl\*.htm wxPython-%1\docs\ogl | |
36 | copy wxPython-%1\docs\ogl\ogl.htm wxPython-%1\docs\ogl\index.htm | |
37 | ||
38 | rem **** zip up the docs | |
39 | rem zip -r ..\distrib\wxPython-docs-%1.zip wxPython-%1\docs | |
40 | tar cvf ..\dist\wxPython-docs-%1.tar wxPython-%1 | |
41 | gzip -9 ..\dist\wxPython-docs-%1.tar | |
42 | ||
43 | ||
44 | rem **** Cleanup | |
45 | cd .. | |
46 | del /sxzy _distrib_zip |