1
0

makerel.sh 516 B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. # This is the one!
  3. export OPENSIMMAJOR=0
  4. export OPENSIMMINOR=1
  5. export BUILD=`date +%s`
  6. export BRANCH=PRESTABLE
  7. export SVNURL=svn://openmetaverse.org/opensim/branches/0.1-prestable
  8. # shouldn't have to change anything below here
  9. ./dobuild.sh $SVNURL
  10. ./createreldir.sh
  11. rm -rf build
  12. tar cvf opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar opensim-$OPENSIMMAJOR.$OPENSIMMINOR/*
  13. gzip opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar
  14. echo "Produced binary tarball ready for distribution."