Alien-unzip
view release on metacpan or search on metacpan
maint/cip-before-install view on Meta::CPAN
#!/bin/bash
set -ex
if [ "x$CIP_ENV" == "x" ]; then
echo "please set CIP_ENV to one of:"
echo " export CIP_ENV=ALIEN_INSTALL_TYPE=share"
echo " export CIP_ENV=ALIEN_INSTALL_TYPE=system"
false
fi
if echo $CIP_ENV | grep -q system; then
echo use system unzip
cip sudo apt-get update
cip sudo apt-get -y install unzip
else
echo use internet libffi
cip exec cpanm -n Net::SSLeay IO::Socket::SSL
fi
( run in 0.627 second using v1.01-cache-2.11-cpan-140bd7fdf52 )