From 23ce7197c2e607941b7c229ebba433aa67d74ada Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Sun, 2 Oct 2005 14:30:52 +0000 Subject: [PATCH] Add scripts to compose Win32 MinGW32 and Win32 MS Visual C archives --- dist-gpv.sh | 29 +++++++++++++++++++++++++++++ dist-gpw.sh | 31 +++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100755 dist-gpv.sh create mode 100755 dist-gpw.sh diff --git a/dist-gpv.sh b/dist-gpv.sh new file mode 100755 index 0000000..8f2510f --- /dev/null +++ b/dist-gpv.sh @@ -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 diff --git a/dist-gpw.sh b/dist-gpw.sh new file mode 100755 index 0000000..0c4dd1c --- /dev/null +++ b/dist-gpw.sh @@ -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