The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl

use 5.006;
use strict;

# Load the Module::Install bundled in ./inc/
use inc::Module::Install;

# The name of your distribution
name		'Math-BigInt-FastCalc';

# Get most of the details from the primary module
all_from	'lib/Math/BigInt/FastCalc.pm';

requires	'perl'			=> '5.006';
requires	'Math::BigInt'		=> '1.999714';
requires	'Math::BigInt::Calc'	=> '1.999713';
requires	'XSLoader'		=> '0';

test_requires	'Test::More'	        => 0.47;

license		'perl';

author     	'Peter John Acklam <pjacklam@gmail.com>';

# install this over the version in the Perl core
install_as_core;

sign;

# Generate the Makefile
WriteAll;