c-ares: Update from 1.12.0 to 1.13.0
[termux-packages] / packages / nodejs / build.sh
CommitLineData
f4af89ed 1TERMUX_PKG_HOMEPAGE=https://nodejs.org/
59f0d218 2TERMUX_PKG_DESCRIPTION="Platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications"
1cc4027f 3TERMUX_PKG_VERSION=6.11.0
d946e67c 4TERMUX_PKG_REVISION=1
1189304e 5TERMUX_PKG_SRCURL=https://nodejs.org/dist/v${TERMUX_PKG_VERSION}/node-v${TERMUX_PKG_VERSION}.tar.gz
1cc4027f 6TERMUX_PKG_SHA256=821f518c9b25b7dc52c4d87fce4dbf6df3227aba92f0d008ec9d1f32e5f603d9
a27c409f
FF
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.
10TERMUX_PKG_DEPENDS="openssl, c-ares"
59f0d218
FF
11TERMUX_PKG_RM_AFTER_INSTALL="lib/node_modules/npm/html lib/node_modules/npm/make.bat share/systemtap lib/dtrace"
12TERMUX_PKG_BUILD_IN_SRC=yes
13
14termux_step_configure () {
7e49911a
FF
15 # See https://github.com/nodejs/build/issues/266 about enabling snapshots
16 # when cross compiling. We use {CC,CXX}_host for compilation of code to
17 # be run on the build maching (snapshots when cross compiling are
18 # generated using a CPU emulator provided by v8) and {CC,CXX} for the
19 # cross compile. We unset flags such as CFLAGS as they would affect
20 # both the host and cross compiled build.
21 # Remaining issue to be solved before enabling snapshots by removing
22 # the --without-snapshot flag is that pkg-config picks up cross compilation
23 # flags which breaks the host build.
24 #export CC_host="gcc -pthread"
25 #export CXX_host="g++ -pthread"
26 #export CC="$CC $CFLAGS $CPPFLAGS $LDFLAGS"
27 #export CXX="$CXX $CXXFLAGS $CPPFLAGS $LDFLAGS"
28 #export CFLAGS="-Os"
29 #export CXXFLAGS="-Os"
30 #unset CPPFLAGS LDFLAGS
1224589f 31
59f0d218 32 if [ $TERMUX_ARCH = "arm" ]; then
1224589f 33 DEST_CPU="arm"
59f0d218 34 elif [ $TERMUX_ARCH = "i686" ]; then
1224589f 35 DEST_CPU="ia32"
d59a97b3 36 elif [ $TERMUX_ARCH = "aarch64" ]; then
1224589f 37 DEST_CPU="arm64"
d59a97b3 38 elif [ $TERMUX_ARCH = "x86_64" ]; then
1224589f 39 DEST_CPU="x64"
59f0d218 40 else
6a3364bf 41 termux_error_exit "Unsupported arch '$TERMUX_ARCH'"
59f0d218 42 fi
9ba78439 43
7e49911a 44 # See note above TERMUX_PKG_DEPENDS why we do not use a shared libuv.
1224589f
FF
45 ./configure \
46 --prefix=$TERMUX_PREFIX \
47 --dest-cpu=$DEST_CPU \
48 --dest-os=android \
7e49911a
FF
49 --shared-cares \
50 --shared-openssl \
51 --shared-zlib \
658f8ce9 52 --without-inspector \
7e49911a
FF
53 --without-intl \
54 --without-snapshot
d53dc644 55}