Analizo

 view release on metacpan or  search on metacpan

development-setup.sh  view on Meta::CPAN

#!/bin/sh

set -e

setup_debian() {
  which wget || sudo apt-get -q -y -f install wget
  which gpg || sudo apt-get -q -y -f install gnupg
  which lsb_release || sudo apt-get -q -y -f install lsb-release
  codename=$(lsb_release -c | awk '{print($2)}')
  if type prepare_$codename >/dev/null 2>&1; then
    prepare_$codename
  else
    echo "WARNING: no specific preparation steps for $codename"
  fi

  which apt-file || sudo apt-get -q -y -f install apt-file
  sudo apt-get update



( run in 0.575 second using v1.01-cache-2.11-cpan-e1769b4cff6 )