Acme-CPANAuthors-Canadian

 view release on metacpan or  search on metacpan

INSTALL  view on Meta::CPAN


Installing Acme-CPANAuthors-Canadian is straightforward.

## Installation with cpanm

If you have cpanm, you only need one line:

    % cpanm Acme::CPANAuthors::Canadian

If it does not have permission to install modules to the current perl, cpanm
will automatically set up and install to a local::lib in your home directory.
See the local::lib documentation (https://metacpan.org/pod/local::lib) for
details on enabling it in your environment.

## Installing with the CPAN shell

Alternatively, if your CPAN shell is set up, you should just be able to do:

    % cpan Acme::CPANAuthors::Canadian

## Manual installation

As a last resort, you can manually install it. If you have not already
downloaded the release tarball, you can find the download link on the module's
MetaCPAN page: https://metacpan.org/pod/Acme::CPANAuthors::Canadian

Untar the tarball, install configure prerequisites (see below), then build it:

xt/author/pod-no404s.t  view on Meta::CPAN

#!perl

use strict;
use warnings;
use Test::More;

foreach my $env_skip ( qw(
  SKIP_POD_NO404S
  AUTOMATED_TESTING
) ){
  plan skip_all => "\$ENV{$env_skip} is set, skipping"
    if $ENV{$env_skip};
}

eval "use Test::Pod::No404s";
if ( $@ ) {
  plan skip_all => 'Test::Pod::No404s required for testing POD';
}
else {
  all_pod_files_ok();
}



( run in 1.280 second using v1.01-cache-2.11-cpan-49f99fa48dc )