nodejs: Update from 6.2.0 to 6.2.1
[termux-packages] / packages / nodejs / build.sh
1 TERMUX_PKG_HOMEPAGE=http://nodejs.org/
2 TERMUX_PKG_DESCRIPTION="Platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications"
3 TERMUX_PKG_VERSION=6.2.1
4 TERMUX_PKG_SRCURL=https://nodejs.org/dist/v${TERMUX_PKG_VERSION}/node-v${TERMUX_PKG_VERSION}.tar.gz
5 TERMUX_PKG_DEPENDS="openssl, libuv, libgnustl, c-ares"
6 TERMUX_PKG_RM_AFTER_INSTALL="lib/node_modules/npm/html lib/node_modules/npm/make.bat share/systemtap lib/dtrace"
7 TERMUX_PKG_BUILD_IN_SRC=yes
8
9 termux_step_configure () {
10 # https://github.com/nodejs/build/issues/266: "V8 can handle cross compiling of
11 # snapshots if the {CC,CXX}_host variables are defined, by compiling the
12 # mksnapshot executable with the host compiler". But this currently fails
13 # due to the host build picking up targets flags.
14 export CC_host=gcc
15 export CXX_host=g++
16
17 local _EXTRA_CONFIGURE_ARGS=""
18 if [ $TERMUX_ARCH = "arm" ]; then
19 DEST_CPU="arm"
20 _EXTRA_CONFIGURE_ARGS=" --with-arm-float-abi=hard --with-arm-fpu=neon"
21 elif [ $TERMUX_ARCH = "i686" ]; then
22 DEST_CPU="ia32"
23 elif [ $TERMUX_ARCH = "aarch64" ]; then
24 DEST_CPU="arm64"
25 elif [ $TERMUX_ARCH = "x86_64" ]; then
26 DEST_CPU="x64"
27 else
28 echo "Unsupported arch: $TERMUX_ARCH"
29 exit 1
30 fi
31
32 ./configure \
33 --prefix=$TERMUX_PREFIX \
34 --dest-cpu=$DEST_CPU \
35 --dest-os=android \
36 --shared-openssl --shared-zlib --shared-libuv --shared-cares \
37 --without-snapshot \
38 --without-intl \
39 $_EXTRA_CONFIGURE_ARGS
40 }