2022-08-31 21:57:35 +03:00
|
|
|
distributable:
|
|
|
|
url: https://nodejs.org/dist/v{{ version }}/node-v{{ version }}.tar.xz
|
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
versions:
|
2023-04-08 14:03:25 +03:00
|
|
|
github: nodejs/node/releases/tags
|
2022-08-31 21:57:35 +03:00
|
|
|
|
2022-10-30 17:32:32 +03:00
|
|
|
companions:
|
|
|
|
npmjs.com: '*'
|
|
|
|
|
2022-08-31 21:57:35 +03:00
|
|
|
dependencies:
|
2023-06-16 21:09:48 +03:00
|
|
|
unicode.org: ^71
|
2022-08-31 21:57:35 +03:00
|
|
|
openssl.org: 1.1
|
|
|
|
zlib.net: 1
|
|
|
|
|
2022-10-20 19:36:12 +03:00
|
|
|
provides:
|
|
|
|
- bin/node
|
|
|
|
|
2022-11-25 19:03:11 +03:00
|
|
|
interprets:
|
|
|
|
extensions: js
|
|
|
|
args: node
|
|
|
|
|
2022-08-31 21:57:35 +03:00
|
|
|
build:
|
|
|
|
dependencies:
|
2023-07-19 01:58:36 +03:00
|
|
|
# otherwise, we hit https://reviews.llvm.org/D131307
|
|
|
|
linux:
|
|
|
|
llvm.org: '<16'
|
2022-10-30 21:27:27 +03:00
|
|
|
python.org: '>=3.7 <3.11'
|
2022-09-12 22:47:41 +03:00
|
|
|
freedesktop.org/pkg-config: ^0.29
|
2022-08-31 21:57:35 +03:00
|
|
|
script: |
|
|
|
|
./configure $ARGS
|
|
|
|
make --jobs {{ hw.concurrency }} install
|
|
|
|
env:
|
|
|
|
ARGS:
|
2023-10-02 03:41:57 +03:00
|
|
|
- --without-npm
|
|
|
|
- --prefix={{ prefix }}
|
|
|
|
# like, maybe we should include this?
|
|
|
|
- --with-intl=system-icu
|
|
|
|
- --shared-openssl
|
|
|
|
- --shared-zlib
|
2023-03-05 03:14:02 +03:00
|
|
|
linux/x86-64:
|
|
|
|
CFLAGS: -fPIC
|
|
|
|
CXXFLAGS: -fPIC
|
|
|
|
LDFLAGS: -pie
|
2022-08-31 21:57:35 +03:00
|
|
|
|
|
|
|
test:
|
|
|
|
script: |
|
|
|
|
out=$(node $FIXTURE)
|
|
|
|
test "$out" = "Hello, world!"
|
2023-10-02 03:41:57 +03:00
|
|
|
fixture: console.log("Hello, world!");
|