File: Makefile.PL

package info (click to toggle)
libdata-optlist-perl 0.101-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 116 kB
  • ctags: 77
  • sloc: perl: 1,037; makefile: 45
file content (15 lines) | stat: -rw-r--r-- 422 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;

use inc::Module::Install;

name          ('Data-OptList');
author        ('Ricardo SIGNES <rjbs@cpan.org>');
license       ('perl');
version_from  ('lib/Data/OptList.pm');

requires('Sub::Install' => 0.92); # exporter, needed by Data::OptList
requires('List::Util'   => 0.00); # unknown minimum; used for "first"
requires('Params::Util' => 0.14); # _HASHLIKE, _ARRAYLIKE, _CODELIKE

WriteAll();