2017-01-05 05:11:50 -05:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://nodejs.org/
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_DESCRIPTION="Platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications"
|
2019-01-21 14:53:58 +02:00
|
|
|
TERMUX_PKG_LICENSE="MIT"
|
2019-02-15 23:37:40 +01:00
|
|
|
TERMUX_PKG_VERSION=11.10.0
|
2019-02-23 13:38:12 +02:00
|
|
|
TERMUX_PKG_REVISION=1
|
2019-02-15 23:37:40 +01:00
|
|
|
TERMUX_PKG_SHA256=9fc2ac66ae4608c4c4bd6accc3f0af58ec52dd45fe35c9c0b4059e377119d1cf
|
2017-10-27 22:21:22 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://nodejs.org/dist/v${TERMUX_PKG_VERSION}/node-v${TERMUX_PKG_VERSION}.tar.xz
|
2018-12-28 10:57:04 +01:00
|
|
|
# Note that we do not use a shared libuv to avoid an issue with the Android
|
|
|
|
# linker, which does not use symbols of linked shared libraries when resolving
|
2016-09-21 17:49:02 -04:00
|
|
|
# symbols on dlopen(). See https://github.com/termux/termux-packages/issues/462.
|
2018-09-17 17:27:15 +02:00
|
|
|
TERMUX_PKG_DEPENDS="openssl, c-ares, libicu"
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="lib/node_modules/npm/html lib/node_modules/npm/make.bat share/systemtap lib/dtrace"
|
|
|
|
TERMUX_PKG_BUILD_IN_SRC=yes
|
2018-09-20 02:19:41 +02:00
|
|
|
TERMUX_PKG_CONFLICTS="nodejs-lts, nodejs-current"
|
2018-09-11 23:51:55 +02:00
|
|
|
TERMUX_PKG_REPLACES="nodejs-current"
|
2015-06-13 01:03:31 +02:00
|
|
|
|
2019-02-08 17:37:29 +08:00
|
|
|
termux_step_configure() {
|
2018-09-11 23:51:55 +02:00
|
|
|
local DEST_CPU
|
2015-06-13 01:03:31 +02:00
|
|
|
if [ $TERMUX_ARCH = "arm" ]; then
|
2016-01-14 22:41:39 -05:00
|
|
|
DEST_CPU="arm"
|
2015-06-13 01:03:31 +02:00
|
|
|
elif [ $TERMUX_ARCH = "i686" ]; then
|
2016-01-14 22:41:39 -05:00
|
|
|
DEST_CPU="ia32"
|
2015-12-01 21:50:00 -05:00
|
|
|
elif [ $TERMUX_ARCH = "aarch64" ]; then
|
2016-01-14 22:41:39 -05:00
|
|
|
DEST_CPU="arm64"
|
2015-12-01 21:50:00 -05:00
|
|
|
elif [ $TERMUX_ARCH = "x86_64" ]; then
|
2016-01-14 22:41:39 -05:00
|
|
|
DEST_CPU="x64"
|
2015-06-13 01:03:31 +02:00
|
|
|
else
|
2017-04-09 15:10:01 +02:00
|
|
|
termux_error_exit "Unsupported arch '$TERMUX_ARCH'"
|
2015-06-13 01:03:31 +02:00
|
|
|
fi
|
2015-09-08 19:18:52 -04:00
|
|
|
|
2017-11-01 20:18:56 +01:00
|
|
|
export GYP_DEFINES="host_os=linux"
|
2018-09-11 23:51:55 +02:00
|
|
|
export CC_host=gcc
|
|
|
|
export CXX_host=g++
|
|
|
|
export LINK_host=g++
|
2017-11-01 20:18:56 +01:00
|
|
|
|
2016-09-22 17:59:43 -04:00
|
|
|
# See note above TERMUX_PKG_DEPENDS why we do not use a shared libuv.
|
2016-01-14 22:41:39 -05:00
|
|
|
./configure \
|
|
|
|
--prefix=$TERMUX_PREFIX \
|
|
|
|
--dest-cpu=$DEST_CPU \
|
|
|
|
--dest-os=android \
|
2016-09-22 17:59:43 -04:00
|
|
|
--shared-cares \
|
|
|
|
--shared-openssl \
|
2018-09-17 17:27:15 +02:00
|
|
|
--with-intl=system-icu \
|
2017-11-01 20:18:56 +01:00
|
|
|
--without-snapshot \
|
|
|
|
--cross-compiling
|
2018-09-11 23:51:55 +02:00
|
|
|
|
|
|
|
perl -p -i -e 's/LIBS := \$\(LIBS\)/LIBS := -lpthread/' \
|
|
|
|
$TERMUX_PKG_SRCDIR/out/deps/v8/gypfiles/torque.host.mk
|
2016-01-02 16:58:31 -05:00
|
|
|
}
|