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