pkg(node-15.10.0): relocate files

This commit is contained in:
Thomas Hobson 2021-03-13 19:52:32 +13:00
parent a65ecf7386
commit 60ec517dcd
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
5 changed files with 15 additions and 0 deletions

4
packages/node/15.10.0/build.sh vendored Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
curl "https://nodejs.org/dist/v15.10.0/node-v15.10.0-linux-x64.tar.xz" -o node.tar.xz
tar xf node.tar.xz --strip-components=1
rm node.tar.xz

1
packages/node/15.10.0/environment vendored Normal file
View File

@ -0,0 +1 @@
export PATH=$PWD/bin:$PATH

6
packages/node/15.10.0/metadata.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"language": "node",
"version": "15.10.0",
"author": "Martin Kos <martinkos007@gmail.com>",
"aliases": ["node-javascript", "node-js", "javascript", "js"]
}

3
packages/node/15.10.0/run vendored Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
node $*

1
packages/node/15.10.0/test.js vendored Normal file
View File

@ -0,0 +1 @@
console.log("OK")