diff options
| author | makefu <github@syntax-fehler.de> | 2013-01-14 14:46:22 +0100 |
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2013-01-14 14:46:22 +0100 |
| commit | dbe2d838ba6834788265029162b2dd7d82473335 (patch) | |
| tree | a4eb38f7fc91d91269b6f83453de62242c6ddc23 /node/install | |
| parent | 5a782f6c8f7923f9f415afd504ce6e71acbc7fef (diff) | |
| parent | abf9916bc1add17888308877fa4eb9da330297ef (diff) | |
Merge branch 'master' of github.com:krebscode/painload
Conflicts:
god/temper/Makefile
god/temper/collectd-temper.sh
Diffstat (limited to 'node/install')
| -rwxr-xr-x | node/install | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/node/install b/node/install deleted file mode 100755 index 1284a73a..00000000 --- a/node/install +++ /dev/null @@ -1,79 +0,0 @@ -#! /bin/sh -# -# //node/install -# -# export version=X.Y.Z to install a specific version -# otherwise the latest upstream version will be determined and used -# -# export force=true to install even though it already seems to be installed -# -# export clean=true to first wipe any generated files -# -set -xeuf - -# cd //node -cd $(readlink -f $(dirname $0)) - -# PATH prepend //node/tools //util/bin -export PATH="$PWD/tools:$PWD/../util/bin${PATH+:$PATH}" - -if test "${force-false}" = true; then - : # skip check if it is already installed -else - if test -e ../bin/node; then - : '[32m//bin/node[m # is already installed' - exit - fi -fi - -if test "${clean-false}" = true; then - rm -fR src out -fi - -test -d src || mkdir -v src -cd src - -version=${version-`latest-version`} - -target=node-v$version - -distfile=$target.tar.gz - -download() { - curl -C - -so $distfile http://nodejs.org/dist/v$version/$distfile || - curl -C - -so $distfile http://nodejs.org/dist/$distfile || : -} -is_downloaded() { - gzip -t $distfile 2>/dev/null -} -if ! is_downloaded; then - download - if ! is_downloaded; then - rm -f $distfile - download - fi - if ! is_downloaded; then - rm -f $distfile - echo failed to download distfile - exit 1 - fi -fi - -if ! zcat $distfile | tar -x --keep-newer-files 2>/dev/null; then - rm -fR $target - zcat $distfile | tar -x -fi - -cd .. - -prefix=out/$target -mkdir -p $prefix -prefix=`readlink -f $prefix` - -cd src/$target -./configure --prefix=$prefix -CPPFLAGS=-Wno-unused-but-set-variable make -make install -cd ../.. - -ln -snf ../node/out/$target/bin/node ../bin/node |
