Browse Source

nodejs: Build with system libicu (fixes #2210)

android-5
Fredrik Fornwall 6 years ago
parent
commit
9612920ab5
  1. 5
      packages/nodejs/build.sh

5
packages/nodejs/build.sh

@ -1,12 +1,13 @@
TERMUX_PKG_HOMEPAGE=https://nodejs.org/
TERMUX_PKG_DESCRIPTION="Platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications"
TERMUX_PKG_VERSION=10.10.0
TERMUX_PKG_REVISION=1
TERMUX_PKG_SHA256=860eff976d83dd619849c0b4fab4cadb093ece2c718aaa5af8fb5ebbfa7d8a80
TERMUX_PKG_SRCURL=https://nodejs.org/dist/v${TERMUX_PKG_VERSION}/node-v${TERMUX_PKG_VERSION}.tar.xz
# 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
# symbols on dlopen(). See https://github.com/termux/termux-packages/issues/462.
TERMUX_PKG_DEPENDS="openssl, c-ares"
TERMUX_PKG_DEPENDS="openssl, c-ares, libicu"
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
TERMUX_PKG_CONFLICTS="nodejs-current"
@ -40,7 +41,7 @@ termux_step_configure () {
--shared-openssl \
--shared-zlib \
--without-inspector \
--without-intl \
--with-intl=system-icu \
--without-snapshot \
--cross-compiling

Loading…
Cancel
Save