File: Makefile.PL

package info (click to toggle)
libmath-randomorg-perl 0.04-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 140 kB
  • ctags: 64
  • sloc: perl: 743; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 529 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# use ExtUtils::MakeMaker;
use inc::Module::Install;

license				'perl';
build_requires		'Test::More'	=> '0.42';
no_index			'directory'		=> 'examples';
perl_version		'5.006';

WriteMakefile(
    'NAME'			=> 'Math::RandomOrg',
    'AUTHOR'		=> 'Gregory Todd Williams <gwilliams@cpan.org>',
    'ABSTRACT'		=> 'Retrieve random numbers and data from the random.org webservice.',
    'VERSION_FROM'	=> 'lib/Math/RandomOrg.pm', # finds $VERSION
    'PREREQ_PM'		=> {
    					'LWP'			=> 0,
    					'Math::BigInt'	=> 0,
    				}
);