nodejs-current: Also remove -lz for mkpeephole
[termux-packages] / disabled-packages / nodejs-current / build.sh
index 49216d7..b445bdc 100644 (file)
@@ -1,9 +1,9 @@
 # status: Does not build
 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=7.6.0
+TERMUX_PKG_VERSION=8.2.1
+TERMUX_PKG_SHA256=66fe1379bc7daf9a16c6b5c45ab695bf1cdcfae9738d2989e940104d6b31973f
 TERMUX_PKG_SRCURL=https://nodejs.org/dist/v${TERMUX_PKG_VERSION}/node-v${TERMUX_PKG_VERSION}.tar.gz
-TERMUX_PKG_SHA256=809e80265e332fe1a8268e5a73eb219c356810fe86c69fd2d931c52e07211970
 # 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.
@@ -39,8 +39,7 @@ termux_step_configure () {
        elif [ $TERMUX_ARCH = "x86_64" ]; then
                DEST_CPU="x64"
        else
-               echo "Unsupported arch: $TERMUX_ARCH"
-               exit 1
+               termux_error_exit "Unsupported arch '$TERMUX_ARCH'"
        fi
 
        export GYP_DEFINES="host_os=linux"
@@ -56,4 +55,11 @@ termux_step_configure () {
                --without-inspector \
                --without-intl \
                --cross-compiling
+
+       # Remove cross-compile directories:
+       sed -i '/usr\/include/d; /usr\/lib/d' out/deps/v8/src/mkpeephole.host.mk
+       # The above statement causes some straggling \ in the makefile:
+       sed -i 's|-I$(srcdir)/deps/v8 \\|-I$(srcdir)/deps/v8|' out/deps/v8/src/mkpeephole.host.mk
+       # Remove extra libraries not needed for mkpeephole:
+       sed -i '/-lcares/d; /-lcrypto/d; /-lssl/d; /-lz/d' out/deps/v8/src/mkpeephole.host.mk
 }