Add cmake to build from source

Add cmake to build from source

Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
2021-06-30 09:07:19 +02:00
parent ce95ecfbf6
commit 479f1c5d6f
5 changed files with 10 additions and 8 deletions

View File

@ -59,7 +59,7 @@ PERL_DOWNLOAD_URL=https://www.cpan.org/src/5.0
function do_perl_build {
${WRAPPER} sh Configure -des -Dprefix=/opt/perl > /dev/null
${WRAPPER} make > /dev/null
${WRAPPER} make -j$(nproc) > /dev/null
${WRAPPER} make install > /dev/null
}
@ -78,7 +78,7 @@ function build_perl {
function do_openssl_build {
${WRAPPER} ./config no-shared -fPIC $CONFIG_FLAG --prefix=/usr/local/ssl --openssldir=/usr/local/ssl > /dev/null
${WRAPPER} make > /dev/null
${WRAPPER} make -j$(nproc) > /dev/null
${WRAPPER} make install_sw > /dev/null
}