mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 11:10:08 -07:00
25 lines
528 B
Bash
Executable File
25 lines
528 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--shared-zlib \
|
|
--shared-openssl \
|
|
--with-intl=none \
|
|
--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" \
|
|
"$1/usr/share/doc" \
|
|
"$1/usr/share/systemtap" \
|
|
"$1/usr/lib/node_modules/npm/scripts" \
|
|
"$1/usr/lib/node_modules/npm/configure"
|