The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl

require 5.006;

use strict;
use warnings;

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

# The name of your distribution
name		'bignum';

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

requires	'perl'		=> "5.006";
requires	'Math::BigInt'	=> 1.999712;
requires	'Math::BigRat'	=> 0.12;

build_requires	'Test::More'	=> 0.62;

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;