pkg(perl-5.26.1): Added perl 5.26.1

This commit is contained in:
Dan Vargas 2021-03-15 22:08:44 -05:00 committed by Thomas
parent 81b70fe08d
commit ef5f38b329
5 changed files with 30 additions and 0 deletions

19
packages/perl/5.26.1/build.sh vendored Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
PREFIX=$(realpath $(dirname $0))
mkdir -p build
cd build
curl "https://www.cpan.org/src/5.0/perl-5.26.1.tar.gz" -o perl.tar.gz
tar xzf perl.tar.gz --strip-components=1
./Configure -des -Dprefix="$PREFIX"
make -j$(nproc)
make install -j$(nproc)
cd ..
rm -rf build

1
packages/perl/5.26.1/environment vendored Normal file
View File

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

6
packages/perl/5.26.1/metadata.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"language": "perl",
"version": "5.26.1",
"author": "Dan Vargas <danvargas46@gmail.com>",
"aliases": ["perl", "pl"]
}

3
packages/perl/5.26.1/run vendored Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
perl "$@"

1
packages/perl/5.26.1/test.pl vendored Normal file
View File

@ -0,0 +1 @@
print("OK")