summaryrefslogtreecommitdiff
path: root/repo/system/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/system/nodejs/nodejs.xibuild
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/system/nodejs/nodejs.xibuild')
-rw-r--r--repo/system/nodejs/nodejs.xibuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/repo/system/nodejs/nodejs.xibuild b/repo/system/nodejs/nodejs.xibuild
deleted file mode 100644
index b4918c8..0000000
--- a/repo/system/nodejs/nodejs.xibuild
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/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
-}