pkg(vlang-0.1.13): Add vlang 0.1.13

This commit is contained in:
Shivansh-007 2021-03-19 08:38:34 +05:30
parent 75f5d65fc1
commit aaf417c701
5 changed files with 25 additions and 0 deletions

8
packages/vlang/0.1.13/build.sh vendored Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
# Cloning vlang source
git clone https://github.com/vlang/v
cd v
# Building and installing vlang
make

4
packages/vlang/0.1.13/environment vendored Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Put 'export' statements here for environment variables
export PATH="$PWD/v:$PATH"

6
packages/vlang/0.1.13/metadata.json vendored Normal file
View file

@ -0,0 +1,6 @@
{
"language": "vlang",
"version": "0.1.13",
"author": "Shivansh-007 <shivansh-007@outlook.com>",
"aliases": ["v"]
}

4
packages/vlang/0.1.13/run vendored Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Put instructions to run the runtime
v run "$@"

3
packages/vlang/0.1.13/test.v vendored Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println('OK')
}