Math-Formula
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
#!/usr/bin/env perl
use ExtUtils::MakeMaker;
use 5.016;
my $version = '0.18';
# Use command 'oodist' to produce your whole software release.
my $git = "https://github.com/markov2/perl5-Math-Formula";
my $publish = "../public_html/math-formula";
my $homepage = "http://perl.overmeer.net/CPAN/";
my %oodist = (
oodoc_version => 3.03,
first_year => 2023,
email => "markov\@cpan.org",
include => [
],
use => [
],
parser => {
syntax => 'markov',
skip_links => [ 'MF' ],
pmhead => undef,
},
tests => {
},
raw => {
publish => "$publish/raw",
},
release => {
publish => "$publish/source",
},
generate => [
{ # Add real pod to the releases
format => 'pod3',
podtail => undef,
},
],
);
my %prereq = (
'Test::More' => 0,
'Log::Report' => 0,
'POSIX' => 0,
'Scalar::Util' => 0,
'File::Spec' => 0,
'File::Slurper' => 0,
'DateTime' => 0,
'DateTime::Duration' => 0,
'DateTime::TimeZone' => 0,
'DateTime::TimeZone::OffsetOnly' => 0,
'DateTime::Format::Duration::ISO8601' => 0.006,
);
# Some optional modules. When installed, they need to have at least
# the minimal version.
eval "require YAML::XS";
unless($@)
{ $prereq{'YAML::XS'} = 0.81;
$prereq{'boolean'} = 0.46;
}
( run in 0.930 second using v1.01-cache-2.11-cpan-13bb782fe5a )