diff options
-rwxr-xr-x | releng/makerel.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/releng/makerel.sh b/releng/makerel.sh new file mode 100755 index 0000000..23f3aaa --- /dev/null +++ b/releng/makerel.sh | |||
@@ -0,0 +1,23 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | # This is the one! | ||
4 | |||
5 | export OPENSIMMAJOR=0 | ||
6 | export OPENSIMMINOR=1 | ||
7 | export BRANCH=DEVEL | ||
8 | export SVNURL=svn://openmetaverse.org/opensim/trunk | ||
9 | |||
10 | |||
11 | |||
12 | |||
13 | |||
14 | # shouldn't have to change anything below here | ||
15 | |||
16 | ./dobuild.sh $SVNURL | ||
17 | ./createreldir.sh | ||
18 | |||
19 | tar cvf opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BRANCH.tar opensim-$OPENSIMMAJOR.$OPENSIMMINOR/* | ||
20 | gzip opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BRANCH.tar | ||
21 | |||
22 | echo "Produced binary tarball ready for distribution." | ||
23 | |||