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.3.0
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
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.
17 local _EXTRA_CONFIGURE_ARGS=""
18 if [ $TERMUX_ARCH = "arm" ]; then
20 _EXTRA_CONFIGURE_ARGS=" --with-arm-float-abi=hard --with-arm-fpu=neon"
21 elif [ $TERMUX_ARCH = "i686" ]; then
23 elif [ $TERMUX_ARCH = "aarch64" ]; then
25 elif [ $TERMUX_ARCH = "x86_64" ]; then
28 echo "Unsupported arch: $TERMUX_ARCH"
33 --prefix=$TERMUX_PREFIX \
34 --dest-cpu=$DEST_CPU \
36 --shared-openssl --shared-zlib --shared-libuv --shared-cares \
39 $_EXTRA_CONFIGURE_ARGS