Added makerel.sh script - run it to get a nice tarball

0.1-prestable
gareth 2007-05-06 13:25:50 +00:00
parent 2e799b3b68
commit 0607f1a325
1 changed files with 23 additions and 0 deletions

23
releng/makerel.sh Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
# This is the one!
export OPENSIMMAJOR=0
export OPENSIMMINOR=1
export BRANCH=DEVEL
export SVNURL=svn://openmetaverse.org/opensim/trunk
# shouldn't have to change anything below here
./dobuild.sh $SVNURL
./createreldir.sh
tar cvf opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BRANCH.tar opensim-$OPENSIMMAJOR.$OPENSIMMINOR/*
gzip opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BRANCH.tar
echo "Produced binary tarball ready for distribution."