File: Makefile.PL

package info (click to toggle)
libmath-base36-perl 0.14-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 1,333; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 351 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use inc::Module::Install 1.00;

if ( -e 'MANIFEST.SKIP' ) {
    system( 'pod2text lib/Math/Base36.pm > README' );
}

name 'Math-Base36';
perl_version '5.006';
all_from 'lib/Math/Base36.pm';

requires 'Math::BigInt' => '1.60';

test_requires 'Test::More';
test_requires 'Test::Exception';

repository "http://github.com/bricas/math-base36";

WriteAll;