summaryrefslogtreecommitdiff
path: root/repo/nodejs/nodejs.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
committerdavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
commit48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch)
tree00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/nodejs/nodejs.xibuild
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/nodejs/nodejs.xibuild')
-rw-r--r--repo/nodejs/nodejs.xibuild36
1 files changed, 36 insertions, 0 deletions
diff --git a/repo/nodejs/nodejs.xibuild b/repo/nodejs/nodejs.xibuild
new file mode 100644
index 0000000..b4918c8
--- /dev/null
+++ b/repo/nodejs/nodejs.xibuild
@@ -0,0 +1,36 @@
+#!/bin/sh
+
+NAME="nodejs"
+DESC="JavaScript runtime built on V8 engine - LTS version"
+
+MAKEDEPS="make "
+DEPS="brotli sbase sort c-ares cacerts openssl musl libnghttp zlib "
+
+PKG_VER=16.14.2
+SOURCE="https://nodejs.org/dist/v$PKG_VER/node-v$PKG_VER.tar.gz"
+ADDITIONAL="fix-build-with-system-c-ares.patch disable-running-gyp-on-shared-deps.patch "
+
+prepare () {
+ apply_patches
+}
+
+build () {
+
+ python3 configure.py --prefix=/usr \
+ --shared-brotli \
+ --shared-zlib \
+ --shared-openssl \
+ --shared-cares \
+ --shared-nghttp2 \
+ --ninja \
+ --openssl-use-def-ca-store \
+ --with-icu-default-data-dir=$(icu-config --icudatadir) \
+ --with-intl=small-icu \
+ --without-corepack \
+ --without-npm
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}