This commit is contained in:
Artur Gurgul 2025-08-01 12:52:57 +02:00
commit b3dba4542f
44 changed files with 1596 additions and 0 deletions

21
recipes/node.yml Normal file
View file

@ -0,0 +1,21 @@
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