2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/extra/nodejs/build
2020-10-08 06:24:28 +03:00

24 lines
512 B
Bash
Executable File

#!/bin/sh -e
# Fix python 3.
sed -i 's|(3, 8)|(3, 9), (3, 8)|g' configure
./configure \
--shared-zlib \
--with-intl=small-icu \
--without-etw \
--without-dtrace \
--without-report \
--without-node-snapshot \
--without-node-code-cache \
--partly-static \
--ninja
ninja -C out/Release
tools/install.py install "$1" /usr
# Remove unneeded files.
rm -rf "$1/usr/include/node/openssl"
rm -rf "$1/usr/lib/node_modules/npm/scripts"
rm -f "$1/usr/lib/node_modules/npm/configure"