pkg(vyxal-2.17.0): update build.sh and update version

This commit is contained in:
Lyxal 2022-09-14 23:55:13 +10:00 committed by GitHub
parent 0257676d18
commit fda6104cba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 18 deletions

9
packages/vyxal/2.17.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.17.0

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 ..