f93f849acf67d6d6af467f2ff1667abe63cca7ba
[termux-packages] / disabled-packages / nodejs-current / build.sh
1 # status: Does not build
2 TERMUX_PKG_HOMEPAGE=https://nodejs.org/
3 TERMUX_PKG_DESCRIPTION="Platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications"
4 TERMUX_PKG_VERSION=8.1.4
5 TERMUX_PKG_SRCURL=https://nodejs.org/dist/v${TERMUX_PKG_VERSION}/node-v${TERMUX_PKG_VERSION}.tar.gz
6 TERMUX_PKG_SHA256=5d54960fb3c5e794b784d15e9e85e3853e1189e5ae840f314bf2fc091fbb5c12
7 # Note that we do not use a shared libuv to avoid an issue with the Android
8 # linker, which does not use symbols of linked shared libraries when resolving
9 # symbols on dlopen(). See https://github.com/termux/termux-packages/issues/462.
10 TERMUX_PKG_DEPENDS="openssl, c-ares"
11 TERMUX_PKG_RM_AFTER_INSTALL="lib/node_modules/npm/html lib/node_modules/npm/make.bat share/systemtap lib/dtrace"
12 TERMUX_PKG_BUILD_IN_SRC=yes
13 TERMUX_PKG_CONFLICTS="nodejs"
14
15 termux_step_configure () {
16 # See https://github.com/nodejs/build/issues/266 about enabling snapshots
17 # when cross compiling. We use {CC,CXX}_host for compilation of code to
18 # be run on the build maching (snapshots when cross compiling are
19 # generated using a CPU emulator provided by v8) and {CC,CXX} for the
20 # cross compile. We unset flags such as CFLAGS as they would affect
21 # both the host and cross compiled build.
22 # Remaining issue to be solved before enabling snapshots by removing
23 # the --without-snapshot flag is that pkg-config picks up cross compilation
24 # flags which breaks the host build.
25 export CC_host="gcc -pthread"
26 export CXX_host="g++ -pthread"
27 export CC="$CC $CFLAGS $CPPFLAGS $LDFLAGS"
28 export CXX="$CXX $CXXFLAGS $CPPFLAGS $LDFLAGS"
29 export CFLAGS="-Os"
30 export CXXFLAGS="-Os"
31 unset CPPFLAGS LDFLAGS
32
33
34 if [ $TERMUX_ARCH = "arm" ]; then
35 DEST_CPU="arm"
36 elif [ $TERMUX_ARCH = "i686" ]; then
37 DEST_CPU="ia32"
38 elif [ $TERMUX_ARCH = "aarch64" ]; then
39 DEST_CPU="arm64"
40 elif [ $TERMUX_ARCH = "x86_64" ]; then
41 DEST_CPU="x64"
42 else
43 termux_error_exit "Unsupported arch '$TERMUX_ARCH'"
44 fi
45
46 export GYP_DEFINES="host_os=linux"
47
48 # See note above TERMUX_PKG_DEPENDS why we do not use a shared libuv.
49 ./configure \
50 --prefix=$TERMUX_PREFIX \
51 --dest-cpu=$DEST_CPU \
52 --dest-os=android \
53 --shared-cares \
54 --shared-openssl \
55 --shared-zlib \
56 --without-inspector \
57 --without-intl \
58 --cross-compiling
59 }