File: Makefile.PL

package info (click to toggle)
libdatapager-perl 0.01a-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 100 kB
  • sloc: perl: 114; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 480 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME         => 'Data::Pager',
    VERSION_FROM => 'lib/Data/Pager.pm', # finds \$VERSION
    AUTHOR       => 'Vidul Petrov (vidul@cpan.org)',
    ABSTRACT     => 'flexible data pager',
    PREREQ_PM    => {
                     'Test::Simple' => 0.44,
                     'Test::More' => 0.01,
                    },
);