2005-11-06 12:50:23 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2005-11-06 14:05:27 +00:00
|
|
|
# Create a archive 'gpl-*.zip' (gplYMMDD.zip) with binary linux build
|
2005-11-06 12:50:23 +00:00
|
|
|
# of the Golded+.
|
|
|
|
|
|
|
|
date=`date +%Y%m%d`
|
|
|
|
shortdate=`echo ${date} | sed s/^...//`
|
|
|
|
shortname=../gpl${shortdate}.zip
|
2005-11-26 01:29:49 +00:00
|
|
|
name=../gpl115-${date}.zip
|
2005-11-06 12:50:23 +00:00
|
|
|
|
2006-02-18 14:08:47 +00:00
|
|
|
echo Build a Golded+/lnx binary package: ${name} and ${shortname}
|
|
|
|
|
2006-02-18 15:23:03 +00:00
|
|
|
if [ ! -f golded3/mygolded.h ]; then
|
|
|
|
cp golded3/mygolded.__h golded3/mygolded.h
|
2006-02-20 08:42:13 +00:00
|
|
|
echo "golded3/mygolded.h is created now. Please edit this file"
|
|
|
|
exit 1
|
2006-02-18 15:23:03 +00:00
|
|
|
fi
|
2005-11-06 12:50:23 +00:00
|
|
|
sed -i.orig -e "s/\#define __GVER_POSTVERSION__ .*/\#define __GVER_POSTVERSION__ \"-b${date}\"/" golded3/mygolded.h
|
|
|
|
|
2006-02-20 08:39:04 +00:00
|
|
|
bines="bin/gedlnx bin/gnlnx bin/rddtlnx"
|
|
|
|
files="${bines} docs/copying docs/copying.lib"
|
2005-11-06 12:50:23 +00:00
|
|
|
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"
|
|
|
|
|
2006-03-12 17:07:10 +00:00
|
|
|
printf "GoldED+1.1.5 [`uname` binaries]\r\n" >bin/File_ID.Diz
|
2005-11-06 12:50:23 +00:00
|
|
|
printf 'Snapshot (development version)\r\n' >>bin/File_ID.Diz
|
|
|
|
printf 'This is unstable release and\r\n' >>bin/File_ID.Diz
|
|
|
|
printf 'it should be used for testing.\r\n' >>bin/File_ID.Diz
|
2006-03-12 17:07:10 +00:00
|
|
|
printf -- '------------------------------\r\n' >>bin/File_ID.Diz
|
2005-11-06 12:50:23 +00:00
|
|
|
printf 'GoldED+ is a successor of the\r\n' >>bin/File_ID.Diz
|
|
|
|
printf 'wellknown GoldED mail editor.\r\n' >>bin/File_ID.Diz
|
2006-03-12 17:07:10 +00:00
|
|
|
printf -- '------------------------------\r\n' >>bin/File_ID.Diz
|
2005-11-06 12:50:23 +00:00
|
|
|
printf '*golded-plus.sourceforge.net* \r\n' >>bin/File_ID.Diz
|
|
|
|
|
|
|
|
make PLATFORM=lnx clean
|
|
|
|
make PLATFORM=lnx
|
|
|
|
make PLATFORM=lnx strip
|
|
|
|
make docs
|
2006-02-20 08:39:04 +00:00
|
|
|
|
|
|
|
for i in ${bines} ; do
|
2006-02-20 16:56:28 +00:00
|
|
|
if [ ! -f ${i} ] ; then echo "File ${i} not exists, stop!"; exit 1 ; fi
|
2006-02-20 08:39:04 +00:00
|
|
|
done
|
|
|
|
|
2005-11-06 12:50:23 +00:00
|
|
|
zip -9DXj ${name} bin/File_ID.Diz $files
|
|
|
|
cp ${name} ${shortname}
|