init
This commit is contained in:
commit
b3dba4542f
44 changed files with 1596 additions and 0 deletions
21
recipes/node.yml
Normal file
21
recipes/node.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue