This commit is contained in:
lyxal 2024-04-30 16:30:29 +02:00 committed by GitHub
commit 55aed4e16e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 19 additions and 32 deletions

9
packages/vyxal/2.18.0/build.sh vendored Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# get Python source
source ../../python/3.9.4/build.sh
# And install the package
pip install vyxal==2.18.0

4
packages/vyxal/2.18.0/environment vendored Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Python path
export PATH=$PWD/bin:$PATH

View File

@ -1,5 +1,5 @@
{
"language": "vyxal",
"version": "2.4.1",
"version": "2.18.0",
"aliases": []
}
}

3
packages/vyxal/2.18.0/run vendored Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
vyxal "$@"

1
packages/vyxal/2.18.0/test.vyxal vendored Normal file
View File

@ -0,0 +1 @@
`OK

View File

@ -1,18 +0,0 @@
#!/usr/bin/env bash
# get Python source
source ../../python/3.9.4/build.sh
# add regex and pwn modules
bin/pip3 install regex pwn
# make vyxal directory
mkdir vyxal
cd vyxal
# Vyxal install
curl -L "https://github.com/Vyxal/Vyxal/archive/refs/tags/v2.4.1.tar.gz" -o vyxal.tar.xz
tar xf vyxal.tar.xz --strip-components=1
rm vyxal.tar.xz
cd ..

View File

@ -1,8 +0,0 @@
#!/usr/bin/env bash
# Python and Vyxal path
export PATH=$PWD/bin:$PATH
export VYXAL_PATH=$PWD/vyxal
# export term to fix curses warning
export TERM=xterm

View File

@ -1,3 +0,0 @@
#!/usr/bin/env bash
python3 "$VYXAL_PATH"/Vyxal.py "$1"

View File

@ -1 +0,0 @@
`OK