Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 46 lines (34 sloc) 856 Bytes
#! /bin/bash
PKG=node
VERSION=8.11.4
BUILD=0
PREFIX=/pkg/$PKG-$VERSION-$BUILD
#PREFIX=/dev/shm/$PKG-$VERSION-$BUILD
set -xe
umask 022
BUILD_TMPDIR=/dev/shm/$PKG-$VERSION-$BUILD.build.tmp
test -d $BUILD_TMPDIR && rm -rf $BUILD_TMPDIR
mkdir -p $BUILD_TMPDIR/home
export TMPDIR=$BUILD_TMPDIR
export HOME=$BUILD_TMPDIR/home
exec </dev/null
mkdir -p $PREFIX
cat >$PREFIX/profile <<-EOF
PATH=$PREFIX/bin:\$PATH
EOF
. $PREFIX/profile
export MAKEFLAGS="-j $(nproc)"
BUILDDIR=$PREFIX/build
mkdir -p $BUILDDIR
cd $BUILDDIR
test -e ${PKG}-v${VERSION}.tar.gz || wget https://nodejs.org/dist/v${VERSION}/${PKG}-v${VERSION}.tar.gz
test -d ${PKG}-v${VERSION} || tar xvf ${PKG}-v${VERSION}.tar.gz
cd ${PKG}-v${VERSION}
./configure \
--prefix=$PREFIX
make
make install
for i in `ls ${PREFIX}/bin`; do
ln -sv ${PREFIX}/bin/${i}{,-${VERSION}}
done
exit