1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-05-10 21:56:27 +02:00

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
packages/perl/5.26.1

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