pkg(deno-1.7.5): relocate files

This commit is contained in:
Thomas Hobson 2021-03-13 19:53:14 +13:00
parent 509013f4a0
commit eb38af782d
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
5 changed files with 15 additions and 0 deletions

5
packages/deno/1.7.5/build.sh vendored Executable file
View File

@ -0,0 +1,5 @@
curl -L https://github.com/denoland/deno/releases/download/v1.7.5/deno-x86_64-unknown-linux-gnu.zip --output deno.zip
unzip -o deno.zip
rm deno.zip
chmod +x deno

1
packages/deno/1.7.5/environment vendored Normal file
View File

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

6
packages/deno/1.7.5/metadata.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"language": "deno",
"version": "1.7.5",
"author": "Thomas Hobson <thomas@hexf.me>",
"aliases": ["deno-ts", "deno-js"]
}

2
packages/deno/1.7.5/run vendored Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
DENO_DIR=$PWD deno run $*

1
packages/deno/1.7.5/test.ts vendored Normal file
View File

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