View of /trunk/Mac/make-opensim.sh
Parent Directory
|
Revision Log
Revision 13 -
(download)
(as text)
(annotate)
Fri Aug 21 02:34:27 2009 UTC (3 years, 9 months ago) by chi11ken
File size: 475 byte(s)
Fri Aug 21 02:34:27 2009 UTC (3 years, 9 months ago) by chi11ken
File size: 475 byte(s)
Convert script to use OpenSim git repo.
#!/bin/bash
set -o errexit
VERSION=0.6.6-release
CURDIR=`pwd`
TEMPDIR=${CURDIR}/OpenSim-build
rm -rf OpenSim ${TEMPDIR}
mkdir -p OpenSim
# get source and build
git clone git://opensimulator.org/git/opensim ${TEMPDIR}
cd ${TEMPDIR}
git checkout ${VERSION}
./runprebuild.sh
nant
cd ${CURDIR}
# copy binaries to installer directory
cd OpenSim || exit 1
cp -r ${TEMPDIR}/bin/* .
cp ${TEMPDIR}/LICENSE.txt .
cp ${TEMPDIR}/README.txt .
cp ${TEMPDIR}/CONTRIBUTORS.txt .
cd ..
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

