27 lines
538 B
Bash
Executable File
27 lines
538 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This is the one!
|
|
|
|
export OPENSIMMAJOR=0
|
|
export OPENSIMMINOR=1
|
|
export BUILD=`date +%s`
|
|
export BRANCH=DEVEL
|
|
export SVNURL=svn://openmetaverse.org/opensim/trunk
|
|
|
|
|
|
|
|
|
|
|
|
# shouldn't have to change anything below here
|
|
|
|
./dobuild.sh $SVNURL
|
|
./createreldir.sh
|
|
rm -rf build
|
|
|
|
tar cvf opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar opensim-$OPENSIMMAJOR.$OPENSIMMINOR/*
|
|
gzip opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar
|
|
|
|
rm -rf opensim-$OPENSIMMAJOR.$OPENSIMMINOR
|
|
echo "Produced binary tarball ready for distribution."
|
|
|