AAAA-Crypt-DH

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

---
abstract: 'making Crypt::DH installable'
author:
  - 'Chris Williams'
build_requires:
  ExtUtils::MakeMaker: 6.59
  Test::More: 0.47
configure_requires:
  ExtUtils::MakeMaker: 6.59
distribution_type: module
dynamic_config: 1
generated_by: 'Module::Install version 1.17'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: AAAA-Crypt-DH

Makefile.PL  view on Meta::CPAN

use if ! ( grep { $_ eq '.' } @INC ), qw[lib .];
use strict;
use inc::Module::Install;
name 'AAAA-Crypt-DH';
author 'Chris Williams';
version_from 'lib/AAAA/Crypt/DH.pm';
abstract_from 'lib/AAAA/Crypt/DH.pm';
readme_from 'lib/AAAA/Crypt/DH.pm';
license 'perl';
perl_version '5.006';
build_requires 'Test::More' => 0.47;
eval { assertlibs lib => 'gmp', header => 'gmp.h'; };
unless ($@) {
  requires 'Math::BigInt::GMP' => 1.24;
}
else {
  requires 'Math::BigInt::Pari' => 1.13;
}
auto_license;
githubmeta;
auto_provides;

inc/Devel/CheckLib.pm  view on Meta::CPAN

=head1 FUNCTIONS

All of these take the same named parameters and are exported by default.
To avoid exporting them, C<use Devel::CheckLib ()>.

=head2 assert_lib

This takes several named parameters, all of which are optional, and dies
with an error message if any of the libraries listed can
not be found.  B<Note>: dying in a Makefile.PL or Build.PL may provoke
a 'FAIL' report from CPAN Testers' automated smoke testers.  Use 
C<check_lib_or_exit> instead.

The named parameters are:

=over

=item lib

Must be either a string with the name of a single 
library or a reference to an array of strings of library names.  Depending

t/00_compile.t  view on Meta::CPAN

use Test::More 'no_plan';
use_ok('AAAA::Crypt::DH');

t/99_pod.t  view on Meta::CPAN

use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();

t/99_pod_coverage.t  view on Meta::CPAN

use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
all_pod_coverage_ok();

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.886 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )