termux-packages/packages/nodejs/build.sh

95 lines
3.3 KiB
Bash
Raw Normal View History

2017-01-05 11:11:50 +01:00
TERMUX_PKG_HOMEPAGE=https://nodejs.org/
TERMUX_PKG_DESCRIPTION="Open Source, cross-platform JavaScript runtime environment"
2019-01-21 13:53:58 +01:00
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="Yaksh Bariya <yakshbari4@gmail.com>"
2022-04-09 14:34:59 +02:00
TERMUX_PKG_VERSION=17.9.0
TERMUX_PKG_REVISION=1
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
2022-04-09 14:34:59 +02:00
TERMUX_PKG_SHA256=5659f6da66dc4c959f59ab63e8b9171892847c3440f4d1cb68394dba67ca39e0
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
# symbols on dlopen(). See https://github.com/termux/termux-packages/issues/462.
2019-06-19 23:43:07 +02:00
TERMUX_PKG_DEPENDS="libc++, openssl, c-ares, libicu, zlib"
TERMUX_PKG_CONFLICTS="nodejs-lts, nodejs-current"
TERMUX_PKG_BREAKS="nodejs-dev"
TERMUX_PKG_REPLACES="nodejs-current, nodejs-dev"
TERMUX_PKG_SUGGESTS="clang, make, pkg-config, python"
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=true
2019-08-25 18:22:08 +02:00
TERMUX_PKG_HOSTBUILD=true
termux_step_post_get_source() {
2019-08-25 18:22:08 +02:00
# Prevent caching of host build:
rm -Rf $TERMUX_PKG_HOSTBUILD_DIR
}
termux_step_host_build() {
local ICU_VERSION=71.1
local ICU_TAR=icu4c-${ICU_VERSION//./_}-src.tgz
local ICU_DOWNLOAD=https://github.com/unicode-org/icu/releases/download/release-${ICU_VERSION//./-}/$ICU_TAR
2019-08-25 18:22:08 +02:00
termux_download \
$ICU_DOWNLOAD\
$TERMUX_PKG_CACHEDIR/$ICU_TAR \
67a7e6e51f61faf1306b6935333e13b2c48abd8da6d2f46ce6adca24b1e21ebf
2019-08-25 18:22:08 +02:00
tar xf $TERMUX_PKG_CACHEDIR/$ICU_TAR
cd icu/source
if [ "$TERMUX_ARCH_BITS" = 32 ]; then
./configure --prefix $TERMUX_PKG_HOSTBUILD_DIR/icu-installed \
--disable-samples \
--disable-tests \
--build=i686-pc-linux-gnu "CFLAGS=-m32" "CXXFLAGS=-m32" "LDFLAGS=-m32"
else
./configure --prefix $TERMUX_PKG_HOSTBUILD_DIR/icu-installed \
--disable-samples \
--disable-tests
fi
make -j $TERMUX_MAKE_PROCESSES install
}
2015-06-13 01:03:31 +02:00
termux_step_configure() {
local DEST_CPU
2015-06-13 01:03:31 +02:00
if [ $TERMUX_ARCH = "arm" ]; then
2016-01-15 04:41:39 +01:00
DEST_CPU="arm"
2015-06-13 01:03:31 +02:00
elif [ $TERMUX_ARCH = "i686" ]; then
2016-01-15 04:41:39 +01:00
DEST_CPU="ia32"
2015-12-02 03:50:00 +01:00
elif [ $TERMUX_ARCH = "aarch64" ]; then
2016-01-15 04:41:39 +01:00
DEST_CPU="arm64"
2015-12-02 03:50:00 +01:00
elif [ $TERMUX_ARCH = "x86_64" ]; then
2016-01-15 04:41:39 +01: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-09 01:18:52 +02:00
2017-11-01 20:18:56 +01:00
export GYP_DEFINES="host_os=linux"
export CC_host=gcc
export CXX_host=g++
2021-10-28 11:36:35 +02:00
export LINK_host=g++
LDFLAGS+=" -ldl"
# See note above TERMUX_PKG_DEPENDS why we do not use a shared libuv.
2016-01-15 04:41:39 +01:00
./configure \
--prefix=$TERMUX_PREFIX \
--dest-cpu=$DEST_CPU \
--dest-os=android \
--shared-cares \
--shared-openssl \
2019-04-15 00:35:44 +02:00
--shared-zlib \
--with-intl=system-icu \
2017-11-01 20:18:56 +01:00
--cross-compiling
2019-08-25 18:22:08 +02:00
export LD_LIBRARY_PATH=$TERMUX_PKG_HOSTBUILD_DIR/icu-installed/lib
2021-10-28 11:36:35 +02:00
perl -p -i -e "s@LIBS := \\$\\(LIBS\\)@LIBS := -L$TERMUX_PKG_HOSTBUILD_DIR/icu-installed/lib -lpthread -licui18n -licuuc -licudata -ldl -lz@" \
$TERMUX_PKG_SRCDIR/out/tools/v8_gypfiles/mksnapshot.host.mk \
2019-05-06 00:13:05 +02:00
$TERMUX_PKG_SRCDIR/out/tools/v8_gypfiles/torque.host.mk \
2019-08-25 18:22:08 +02:00
$TERMUX_PKG_SRCDIR/out/tools/v8_gypfiles/bytecode_builtins_list_generator.host.mk \
$TERMUX_PKG_SRCDIR/out/tools/v8_gypfiles/v8_libbase.host.mk \
$TERMUX_PKG_SRCDIR/out/tools/v8_gypfiles/gen-regexp-special-case.host.mk
}
termux_step_create_debscripts() {
cat <<- EOF > ./postinst
#!$TERMUX_PREFIX/bin/sh
npm config set foreground-scripts true
EOF
}