node.guncelleni

This commit is contained in:
milisarge 2017-05-30 03:00:06 +03:00
parent 27d04b2c82
commit f9474fad0d
1 changed files with 11 additions and 14 deletions

View File

@ -4,23 +4,20 @@
# Depends on: python
name=node
version=4.0.0
version=7.10.0
release=1
source=(http://nodejs.org/dist/v$version/node-v$version.tar.gz
source=(http://nodejs.org/dist/v$version/node-v$version.tar.xz
node.npm.sh)
build() {
cd $name-v$version
./configure --prefix=/usr \
--shared-openssl \
--shared-zlib
make
make DESTDIR=$PKG install
# add missing symlink
cd node-v$version
./configure \
--prefix=/usr \
--shared-openssl \
--shared-zlib
make
make DESTDIR=$PKG install
ln -s ../lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js $PKG/usr/bin/node-gyp
# Add bash completion file for npm.
install -D -m 644 $SRC/node.npm.sh \
$PKG/usr/share/bash-completion/completions/npm
install -D -m 644 $SRC/node.npm.sh $PKG/usr/share/bash-completion/completions/npm
}