From a416b88fb555cab76693cbe35c7e14c2392cc4ca Mon Sep 17 00:00:00 2001 From: slomo Date: Wed, 19 Jan 2011 00:10:43 +0100 Subject: first version of bootstrap skript --- bootstrap.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 bootstrap.sh (limited to 'bootstrap.sh') diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 0000000..593e3d8 --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,29 @@ +#! /bin/sh + +NODE_VERSION=0.3.5 + +## Download Helper +# $1 - url +# $2 - tarball name +download() { + echo $1 + mkdir -p usr/src + + if [ ! -f ${2} ]; then + curl ${1} > ${2} + fi + + tar -xf ${2} -C usr/src +} + +# fetch and compile nodejs +download http://nodejs.org/dist/node-v${NODE_VERSION}.tar.gz node-${NODE_VERSION}.tar.gz +rm -f node-${NODE_VERSION}.tar.gz + +cd usr/src/node-v${NODE_VERSION} +./configure --prefix=../.. +make install +cd ../../.. + +# fetch and compile npm +curl http://npmjs.org/install.sh | PATH=`pwd`/usr/bin:${PATH} sh -- cgit v1.2.3 From 7a79aa613513a53dce807c881c2bca38a7baec31 Mon Sep 17 00:00:00 2001 From: slomo Date: Wed, 19 Jan 2011 00:25:10 +0100 Subject: added load for our package --- bootstrap.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bootstrap.sh') diff --git a/bootstrap.sh b/bootstrap.sh index 593e3d8..02d71df 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -27,3 +27,6 @@ cd ../../.. # fetch and compile npm curl http://npmjs.org/install.sh | PATH=`pwd`/usr/bin:${PATH} sh + +# load development code and compile dependencies +usr/bin/npm link src/nodejs/ -- cgit v1.2.3 From de138849df98ebc6260c6bab665707cc817248e9 Mon Sep 17 00:00:00 2001 From: yves Date: Wed, 19 Jan 2011 16:07:42 +0100 Subject: updated bootstrap.sh --- bootstrap.sh | 48 +++++++++++++++++++++++++++++++----------------- 1 file changed, 31 insertions(+), 17 deletions(-) (limited to 'bootstrap.sh') diff --git a/bootstrap.sh b/bootstrap.sh index 02d71df..73fcf3b 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,32 +1,46 @@ #! /bin/sh +########################### +# start config + +PREFIX=`pwd`/usr/ NODE_VERSION=0.3.5 +# end config +########################### + +export PATH=${PREFIX}/bin:${PATH} + ## Download Helper -# $1 - url -# $2 - tarball name +# $1 - url +# $2 - destdir download() { - echo $1 - mkdir -p usr/src + mkdir -p ${PREFIX}/src if [ ! -f ${2} ]; then - curl ${1} > ${2} + echo "!! saving source to $1" + curl ${1} | tar -x -z -C ${PREFIX}/src fi - - tar -xf ${2} -C usr/src } -# fetch and compile nodejs -download http://nodejs.org/dist/node-v${NODE_VERSION}.tar.gz node-${NODE_VERSION}.tar.gz -rm -f node-${NODE_VERSION}.tar.gz +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 +else + echo "!! node already installed" +fi -cd usr/src/node-v${NODE_VERSION} -./configure --prefix=../.. -make install -cd ../../.. +if [ ! -f ${PREFIX}/bin/npm ];then + # fetch and compile npm + curl http://npmjs.org/install.sh | sh +else + echo "!! npm already installed" -# fetch and compile npm -curl http://npmjs.org/install.sh | PATH=`pwd`/usr/bin:${PATH} sh +fi # load development code and compile dependencies -usr/bin/npm link src/nodejs/ +npm link src/nodejs/ -- cgit v1.2.3 From 5d7f1d4e1feda2fa4e3f7655404737d85276e8a9 Mon Sep 17 00:00:00 2001 From: slomo Date: Wed, 19 Jan 2011 20:40:30 +0100 Subject: fixed path issus with bootstrap --- bootstrap.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'bootstrap.sh') diff --git a/bootstrap.sh b/bootstrap.sh index 73fcf3b..802b7f1 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -30,6 +30,7 @@ if [ ! -f ${PREFIX}/bin/node ]; then cd ${PREFIX}/src/node-v${NODE_VERSION} ./configure --prefix=${PREFIX} make install + cd ${PREFIX}/.. else echo "!! node already installed" fi -- cgit v1.2.3