This commit is contained in:
Max Howell 2022-08-31 14:57:35 -04:00 committed by GitHub
parent 66fcc022d5
commit a48aad9a27

View file

@ -0,0 +1,39 @@
distributable:
url: https://nodejs.org/dist/v{{ version }}/node-v{{ version }}.tar.xz
strip-components: 1
versions:
github: nodejs/node/tags
dependencies:
freedesktop.org/pkg-config: ^0.29
unicode.org: '>=71'
openssl.org: 1.1
zlib.net: 1
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
python.org: ^3.10
script: |
./configure $ARGS
make --jobs {{ hw.concurrency }} install
env:
ARGS:
# we provide npm (well not yet, but we will)
- --without-npm
- --prefix={{ prefix }}
# like, maybe we should include this?
- --without-corepack
- --with-intl=system-icu
- --shared-openssl
- --shared-zlib
test:
script: |
out=$(node $FIXTURE)
test "$out" = "Hello, world!"
fixture:
console.log("Hello, world!");