diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-12 12:49:29 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-12 12:49:29 -0500 |
commit | 99659c30e5369c3f02e286a4a6ec6fecd77f0416 (patch) | |
tree | 12110b15571365acae602ebd9c1348463a0d4710 /chapter8/perl.sh | |
parent | 0e5288f8f3bee7276d561cde029ed492e2ea85e6 (diff) | |
parent | 13c6afd35cab1e3f4d96857d549e02cfd1e23acd (diff) |
Merge branch 'chapter8'
Diffstat (limited to 'chapter8/perl.sh')
-rw-r--r-- | chapter8/perl.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/chapter8/perl.sh b/chapter8/perl.sh new file mode 100644 index 0000000..c7afaaf --- /dev/null +++ b/chapter8/perl.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +MAJMIN="$(cut -d\. -f1,2 <<< "${VERSION}")" + +export BUILD_ZLIB=False +export BUILD_BZIP2=0 + +sh Configure -des \ + -Dprefix=/usr \ + -Dvendorprefix=/usr \ + -Dprivlib=/usr/lib/perl5/"${MAJMIN}"/core_perl \ + -Darchlib=/usr/lib/perl5/"${MAJMIN}"/core_perl \ + -Dsitelib=/usr/lib/perl5/"${MAJMIN}"/site_perl \ + -Dsitearch=/usr/lib/perl5/"${MAJMIN}"/site_perl \ + -Dvendorlib=/usr/lib/perl5/"${MAJMIN}"/vendor_perl \ + -Dvendorarch=/usr/lib/perl5/"${MAJMIN}"/vendor_perl \ + -Dman1dir=/usr/share/man/man1 \ + -Dman3dir=/usr/share/man/man3 \ + -Dpager="/usr/bin/less -isR" \ + -Duseshrplib \ + -Dusethreads + +make + +make -j1 install +unset BUILD_ZLIB BUILD_BZIP2 |