Alien-FFI

 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 libffi
  cip sudo apt-get update
  cip sudo apt-get -y install libffi-dev
else
  echo use internet libffi
fi

cip sudo chown -R cip.cip /home/cip/dzil

cip exec dzil-cpanm -n Alien::Build::Plugin::Download::GitHub



( run in 0.590 second using v1.01-cache-2.11-cpan-71847e10f99 )