1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-05-06 03:46:27 +02:00

Updated to Perl 5.36.0

This commit is contained in:
RVG|lory 2023-04-08 22:29:44 +02:00 committed by GitHub
parent 86d897d580
commit 1da99d47f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 28 additions and 0 deletions
packages/perl/5.36.0

18
packages/perl/5.36.0/build.sh vendored Normal file
View file

@ -0,0 +1,18 @@
#!/bin/bash
PREFIX=$(realpath $(dirname $0))
mkdir -p build
cd build
curl "https://www.cpan.org/src/5.0/perl-5.36.0.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