Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
compile_perl() {
|
|
|
|
local noinstall=false
|
|
|
|
|
|
|
|
local OPTIND=1
|
|
|
|
local opt
|
|
|
|
while getopts 'I' opt; do case "$opt" in
|
|
|
|
I) local noinstall=true ;;
|
|
|
|
esac; done
|
|
|
|
shift $(expr $OPTIND - 1)
|
|
|
|
[ "$#" -ge 1 ] && [ "$1" = '--' ] && shift || true
|
|
|
|
|
|
|
|
perl Build.PL --create_packlist=0 \
|
|
|
|
--prefix="/$dir_prefix" \
|
|
|
|
--destdir="$dir_install" \
|
|
|
|
--installdirs vendor \
|
|
|
|
--install_path script="/$dir_prefix/$dir_bin" \
|
|
|
|
--install_path bin="/$dir_prefix/$dir_bin" \
|
|
|
|
--install_path bindoc="/$dir_prefix/$dir_man/man1" \
|
|
|
|
--install_path libdoc="/$dir_prefix/$dir_man/man3" \
|
|
|
|
"$@"
|
|
|
|
./Build
|
|
|
|
|
|
|
|
if [ "$noinstall" = false ]; then
|
|
|
|
./Build install
|
|
|
|
fi
|
|
|
|
}
|