summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2018-04-03 17:46:30 +0000
committer Eric Hameleers <alien@slackware.com>2018-04-03 17:46:30 +0000
commit1fadb2969ca2db6552339b7204cde6db145dc732 (patch)
tree27f604f8edbbcaa57157f6312039429d965c0425
parent91ade9546f2863ef3396b77f4e699a144c5f6d75 (diff)
downloadasb-1fadb2969ca2db6552339b7204cde6db145dc732.tar.gz
asb-1fadb2969ca2db6552339b7204cde6db145dc732.tar.xz
nodejs: updated to 6.14.0
-rwxr-xr-xnodejs/build/nodejs.SlackBuild8
1 files changed, 5 insertions, 3 deletions
diff --git a/nodejs/build/nodejs.SlackBuild b/nodejs/build/nodejs.SlackBuild
index 647c8c95..e2a286b0 100755
--- a/nodejs/build/nodejs.SlackBuild
+++ b/nodejs/build/nodejs.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
# $Id$
-# Copyright 2017 Eric Hameleers, Eindhoven, NL
+# Copyright 2017, 2018 Eric Hameleers, Eindhoven, NL
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for
@@ -37,6 +37,8 @@
# * Update.
# 6.12.2-1: 20/dec/2017 by Eric Hameleers <alien@slackware.com>
# * Update.
+# 6.14.0-1: 03/apr/2017 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh nodejs.SlackBuild' to build a Slackware package.
# The package (.t?z) and .txt file as well as build logs are created in /tmp .
@@ -46,7 +48,7 @@
PRGNAM=nodejs
SRCNAM=node
-VERSION=${VERSION:-6.12.2}
+VERSION=${VERSION:-6.14.0}
BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:-" -j4 "}
TAG=${TAG:-alien}
@@ -71,7 +73,7 @@ SRCURL="https://nodejs.org/dist/v${VERSION}/node-v${VERSION}.tar.gz"
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$(uname -m)" in
- i?86) ARCH=i486 ;;
+ i?86) ARCH=i586 ;;
arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$(uname -m) ;;