environment/recipes/node.yml
2025-08-01 12:52:57 +02:00

21 lines
353 B
YAML

environment:
- CC=~/.local/bin/gcc
- CXX=~/.local/bin/g++
- LD_LIBRARY_PATH=~/.local/lib64:$LD_LIBRARY_PATH
packages:
- git
- python3
- make
- g++
- pkg-config
- libssl-dev
repository:
url: https://github.com/nodejs/node.git
branch: v24.4.1
steps:
- ./configure --prefix=$HOME/.local
- make -j$(nproc)
- make install