Acme-Pi
view release on metacpan or search on metacpan
Alternatively, if your CPAN shell is set up, you should just be able to do:
% cpan Acme::Pi
## 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::Pi
Untar the tarball, install configure prerequisites (see below), then build it:
% perl Build.PL
% ./Build && ./Build test
Then install it:
% ./Build install
Or the more portable variation:
https://metacpan.org/pod/local::lib
The prerequisites of this distribution will also have to be installed manually. The
prerequisites are listed in one of the files: `MYMETA.yml` or `MYMETA.json` generated
by running the manual build process described above.
## Configure Prerequisites
This distribution requires other modules to be installed before this
distribution's installer can be run. They can be found under the
"configure_requires" key of META.yml or the
"{prereqs}{configure}{requires}" key of META.json.
## Other Prerequisites
This distribution may require additional modules to be installed after running
Build.PL.
Look for prerequisites in the following phases:
* to run ./Build, PHASE = build
* to use the module code itself, PHASE = runtime
* to run tests, PHASE = test
},
"name" : "Acme-Pi",
"no_index" : {
"directory" : [
"inc",
"t",
"xt"
]
},
"prereqs" : {
"configure" : {
"requires" : {
"Module::Build::Tiny" : "0.034",
"perl" : "5.008"
}
},
"develop" : {
"recommends" : {
"Dist::Zilla::PluginBundle::Author::ETHER" : "0.166",
"Dist::Zilla::PluginBundle::Git::VersionManager" : "0.007"
},
},
{
"class" : "Dist::Zilla::Plugin::OnlyCorePrereqs",
"config" : {
"Dist::Zilla::Plugin::OnlyCorePrereqs" : {
"also_disallow" : [],
"check_dual_life_versions" : 1,
"deprecated_ok" : 0,
"phases" : [
"build",
"configure",
"runtime",
"test"
],
"skips" : [
"Module::Build::Tiny"
],
"starting_version" : "5.041009"
}
},
"name" : "OnlyCorePrereqs",
- 'Karen Etheridge <ether@cpan.org>'
build_requires:
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Module::Metadata: '0'
Test::More: '0.88'
if: '0'
open: '0'
perl: '5.008'
version: '0'
configure_requires:
Module::Build::Tiny: '0.034'
perl: '5.008'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.032, CPAN::Meta::Converter version 2.150010'
keywords:
- pi
- Ï
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: ~
-
class: Dist::Zilla::Plugin::OnlyCorePrereqs
config:
Dist::Zilla::Plugin::OnlyCorePrereqs:
also_disallow: []
check_dual_life_versions: 1
deprecated_ok: 0
phases:
- build
- configure
- runtime
- test
skips:
- Module::Build::Tiny
starting_version: '5.041009'
name: OnlyCorePrereqs
version: '0.025'
-
class: Dist::Zilla::Plugin::Prereqs
config:
t/00-report-prereqs.dd view on Meta::CPAN
do { my $x = {
'configure' => {
'requires' => {
'Module::Build::Tiny' => '0.034',
'perl' => '5.008'
}
},
'develop' => {
'recommends' => {
'Dist::Zilla::PluginBundle::Author::ETHER' => '0.166',
'Dist::Zilla::PluginBundle::Git::VersionManager' => '0.007'
},
t/00-report-prereqs.t view on Meta::CPAN
my @full_reports;
my @dep_errors;
my $req_hash = $HAS_CPAN_META ? $full_prereqs->as_string_hash : $full_prereqs;
# Add static includes into a fake section
for my $mod (@include) {
$req_hash->{other}{modules}{$mod} = 0;
}
for my $phase ( qw(configure build test runtime develop other) ) {
next unless $req_hash->{$phase};
next if ($phase eq 'develop' and not $ENV{AUTHOR_TESTING});
for my $type ( qw(requires recommends suggests conflicts modules) ) {
next unless $req_hash->{$phase}{$type};
my $title = ucfirst($phase).' '.ucfirst($type);
my @reports = [qw/Module Want Have/];
for my $mod ( sort keys %{ $req_hash->{$phase}{$type} } ) {
( run in 1.061 second using v1.01-cache-2.11-cpan-0a6323c29d9 )