2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/extra/nodejs/build
2021-07-30 11:26:19 +03:00

32 lines
766 B
Bash
Executable File

#!/bin/sh -e
# Fix build when libatomic.so does not exist in the system.
# This may be provided by compiler-rt which requires no additional
# linker flags to be used.
[ -r "$KISS_ROOT/usr/lib/libatomic.so" ] || {
sed 's/-latomic//' node.gyp > _
mv -f _ node.gyp
}
./configure \
--shared-zlib \
--shared-openssl \
--with-intl=none \
--without-etw \
--without-dtrace \
--without-report \
--without-node-snapshot \
--without-node-code-cache \
--ninja
ninja -C out/Release
tools/install.py install "$1" /usr
# Remove unneeded files.
rm -rf \
"$1/usr/include/node/openssl" \
"$1/usr/share/doc" \
"$1/usr/share/systemtap" \
"$1/usr/lib/node_modules/npm/scripts" \
"$1/usr/lib/node_modules/npm/configure"