mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/node: Updated for version 0.12.0.
Signed-off-by: Audrius Kažukauskas <audrius@neutrino.lt>
This commit is contained in:
parent
488a866d87
commit
dbc3095039
4 changed files with 17 additions and 14 deletions
|
@ -1,2 +1,5 @@
|
||||||
Node is a toolkit for writing extremely high performance non-blocking event
|
Node.js is a platform built on Chrome's JavaScript runtime for easily
|
||||||
driven network servers in JavaScript. Node is built on V8 JavaScript engine.
|
building fast, scalable network applications. Node.js uses an
|
||||||
|
event-driven, non-blocking I/O model that makes it lightweight and
|
||||||
|
efficient, perfect for data-intensive real-time applications that run
|
||||||
|
across distributed devices.
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=node
|
PRGNAM=node
|
||||||
VERSION=${VERSION:-0.10.35}
|
VERSION=${VERSION:-0.12.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -67,10 +67,10 @@ find -L . \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||||
|
|
||||||
# Fix man page path.
|
# Fix man page path.
|
||||||
sed -i 's|share/||' tools/install.py
|
sed -i 's|share/man|man|' tools/install.py
|
||||||
sed -i '/var manRoot/ s/"share",//' deps/npm/lib/{,un}build.js
|
sed -i '/var manRoot/ s/"share",//' deps/npm/lib/{,un}build.js
|
||||||
|
|
||||||
# Fix libdir for 64-bit.
|
# Fix libdir for 64-bit.
|
||||||
|
@ -86,7 +86,7 @@ sed -i "s|\"lib\"|\"lib${LIBDIRSUFFIX}\"|" deps/npm/lib/npm.js
|
||||||
make CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS"
|
make CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS"
|
||||||
make install DESTDIR=$PKG
|
make install DESTDIR=$PKG
|
||||||
|
|
||||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="node"
|
PRGNAM="node"
|
||||||
VERSION="0.10.35"
|
VERSION="0.12.0"
|
||||||
HOMEPAGE="http://nodejs.org/"
|
HOMEPAGE="http://nodejs.org/"
|
||||||
DOWNLOAD="http://nodejs.org/dist/v0.10.35/node-v0.10.35.tar.gz"
|
DOWNLOAD="http://nodejs.org/dist/v0.12.0/node-v0.12.0.tar.gz"
|
||||||
MD5SUM="2c00d8cf243753996eecdc4f6e2a2d11"
|
MD5SUM="62c8d9c74c8f68193f60e4cba020eb48"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES=""
|
REQUIRES=""
|
||||||
|
|
|
@ -8,12 +8,12 @@
|
||||||
|-----handy-ruler------------------------------------------------------|
|
|-----handy-ruler------------------------------------------------------|
|
||||||
node: Node (Evented I/O for V8 JavaScript)
|
node: Node (Evented I/O for V8 JavaScript)
|
||||||
node:
|
node:
|
||||||
node: Node is a toolkit for writing extremely high performance non-blocking
|
node: Node.js is a platform built on Chrome's JavaScript runtime for easily
|
||||||
node: event driven network servers in JavaScript. Node is built on V8
|
node: building fast, scalable network applications. Node.js uses an
|
||||||
node: JavaScript engine.
|
node: event-driven, non-blocking I/O model that makes it lightweight and
|
||||||
|
node: efficient, perfect for data-intensive real-time applications that run
|
||||||
|
node: across distributed devices.
|
||||||
node:
|
node:
|
||||||
node: Homepage: http://nodejs.org/
|
node: Homepage: http://nodejs.org/
|
||||||
node:
|
node:
|
||||||
node:
|
node:
|
||||||
node:
|
|
||||||
node:
|
|
||||||
|
|
Loading…
Reference in a new issue