2007-05-06 13:25:50 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This is the one!
|
|
|
|
|
|
|
|
export OPENSIMMAJOR=0
|
|
|
|
export OPENSIMMINOR=1
|
2007-05-06 15:04:10 +00:00
|
|
|
export BUILD=`date +%s`
|
2007-05-07 16:40:55 +00:00
|
|
|
export BRANCH=DEVEL
|
|
|
|
export SVNURL=svn://openmetaverse.org/opensim/trunk
|
2007-05-06 13:25:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# shouldn't have to change anything below here
|
|
|
|
|
|
|
|
./dobuild.sh $SVNURL
|
|
|
|
./createreldir.sh
|
2007-05-06 13:59:00 +00:00
|
|
|
rm -rf build
|
2007-05-06 13:25:50 +00:00
|
|
|
|
2007-05-06 15:04:10 +00:00
|
|
|
tar cvf opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar opensim-$OPENSIMMAJOR.$OPENSIMMINOR/*
|
|
|
|
gzip opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar
|
2007-05-06 13:25:50 +00:00
|
|
|
|
|
|
|
echo "Produced binary tarball ready for distribution."
|
|
|
|
|