forked from kiss-community/repo
18 lines
331 B
Bash
Executable File
18 lines
331 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--shared-zlib \
|
|
--without-intl \
|
|
--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 headers.
|
|
rm -rf "$1/usr/include/node/openssl"
|