Add scripts to compose Win32 MinGW32 and Win32 MS Visual C archives

This commit is contained in:
Stas Degteff 2005-10-02 14:30:52 +00:00
parent 298ced2375
commit 23ce7197c2
2 changed files with 60 additions and 0 deletions

29
dist-gpv.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/sh
# Create a archive 'gpwin-*.zip' (gpvYMMDD.zip) with Win32 (MS Visual C)
# builg of the Golded+.
name=gpwin-115-`date +%Y%m%d`.zip
files="Release/bin/gedwin.exe Release/bin/gnwin.exe Release/bin/rddtwin.exe"
files="${files} docs/copying docs/copying.lib"
files="${files} docs/golded.html docs/golded.txt docs/goldnode.html"
files="${files} docs/goldnode.txt docs/license.txt docs/notework.txt"
files="${files} docs/rddt.html docs/rddt.txt docs/readme.txt"
files="${files} docs/rusfaq.txt docs/tips.txt docs/todowork.txt"
files="${files} docs/tokencfg.txt docs/tokentpl.txt"
printf 'GoldED+1.1.5 [Win32 binaries]\n\r' >Release/bin/File_ID.Diz
printf '[Compiled using MS Visual C++]\n\r' >>Release/bin/File_ID.Diz
printf 'Snapshot (development version)\n\r' >>Release/bin/File_ID.Diz
printf 'This is unstable release and\n\r' >>Release/bin/File_ID.Diz
printf 'it should be used for testing\n\r' >>Release/bin/File_ID.Diz
printf '------------------------------\n\r' >>Release/bin/File_ID.Diz
printf 'GoldED+ is a successor of the\n\r' >>Release/bin/File_ID.Diz
printf 'wellknown GoldED mail editor.\n\r' >>Release/bin/File_ID.Diz
printf '------------------------------\n\r' >>Release/bin/File_ID.Diz
printf ' *http://golded-plus.sf.net* \n\r' >>Release/bin/File_ID.Diz
make docs
zip -9DXj ${name} Release/bin/File_ID.Diz $files

31
dist-gpw.sh Executable file
View File

@ -0,0 +1,31 @@
#!/bin/sh
# Create a archive 'gpw32-*.zip' (gpwYMMDD.zip) with Win32 (MinGW) build
# of the Golded+.
name=gpw32-115-`date +%Y%m%d`.zip
files="bin/gedcyg.exe bin/gncyg.exe bin/rddtcyg.exe"
files="${files} docs/copying docs/copying.lib"
files="${files} docs/golded.html docs/golded.txt docs/goldnode.html"
files="${files} docs/goldnode.txt docs/license.txt docs/notework.txt"
files="${files} docs/rddt.html docs/rddt.txt docs/readme.txt"
files="${files} docs/rusfaq.txt docs/tips.txt docs/todowork.txt"
files="${files} docs/tokencfg.txt docs/tokentpl.txt"
printf 'GoldED+1.1.5 [Win32 binaries]\n\r' >bin/File_ID.Diz
printf '[Compiled using MinGW/Cygwin]\n\r' >>bin/File_ID.Diz
printf 'Snapshot (development version)\n\r' >>bin/File_ID.Diz
printf 'This is unstable release and\n\r' >>bin/File_ID.Diz
printf 'it should be used for testing.\n\r' >>bin/File_ID.Diz
printf '------------------------------\n\r' >>bin/File_ID.Diz
printf 'GoldED+ is a successor of the\n\r' >>bin/File_ID.Diz
printf 'wellknown GoldED mail editor.\n\r' >>bin/File_ID.Diz
printf '------------------------------\n\r' >>bin/File_ID.Diz
printf '*golded-plus.sourceforge.net* \n\r' >>bin/File_ID.Diz
make
make strip
make docs
zip -9DXj ${name} bin/File_ID.Diz $files