diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2011-01-21 14:39:13 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2011-01-21 14:39:13 +0100 |
commit | 7afd4f2c8d623459f4b4d92a38571408ab2daf04 (patch) | |
tree | 773e6ae156d07b5c07a4cd61117b250b3ef5dd01 /bootstrap.sh | |
parent | c48ace3cb001659a88483ba5fd4ba3a7721d5c25 (diff) | |
parent | 570d3aa1c9bdebfdbf172f0873d7cda94b89fcaf (diff) | |
download | osm-xapi-7afd4f2c8d623459f4b4d92a38571408ab2daf04.tar.gz osm-xapi-7afd4f2c8d623459f4b4d92a38571408ab2daf04.tar.xz osm-xapi-7afd4f2c8d623459f4b4d92a38571408ab2daf04.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 0000000..802b7f1 --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,47 @@ +#! /bin/sh + +########################### +# start config + +PREFIX=`pwd`/usr/ +NODE_VERSION=0.3.5 + +# end config +########################### + +export PATH=${PREFIX}/bin:${PATH} + +## Download Helper +# $1 - url +# $2 - destdir +download() { + mkdir -p ${PREFIX}/src + + if [ ! -f ${2} ]; then + echo "!! saving source to $1" + curl ${1} | tar -x -z -C ${PREFIX}/src + fi +} + +if [ ! -f ${PREFIX}/bin/node ]; then + # fetch and compile nodejs + download http://nodejs.org/dist/node-v${NODE_VERSION}.tar.gz ${PREFIX}/src/node-v${NODE_VERSION} + + cd ${PREFIX}/src/node-v${NODE_VERSION} + ./configure --prefix=${PREFIX} + make install + cd ${PREFIX}/.. +else + echo "!! node already installed" +fi + +if [ ! -f ${PREFIX}/bin/npm ];then + # fetch and compile npm + curl http://npmjs.org/install.sh | sh +else + echo "!! npm already installed" + +fi + +# load development code and compile dependencies +npm link src/nodejs/ |