File: Makefile.PL

package info (click to toggle)
libdoxygen-filter-perl 1.73-2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: perl: 1,015; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 725 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 5.8.8;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME            => 'Doxygen::Filter::Perl',
    VERSION_FROM    => 'lib/Doxygen/Filter/Perl.pm', # finds $VERSION
    ABSTRACT        => 'Methods for pre-filtering Perl code for Doxygen',
    PREREQ_PM       => {
            'Pod::POM'                  => 0.29,
            'Pod::POM::View::HTML'      => 1.06,
            'Log::Log4perl'             => 1.46,
            'Test::More'                => 0.98,
            'Test::Output'              => 1.03,
    },
    AUTHOR          => 'Bret Jordan',
    EXE_FILES       => ['bin/doxygen-filter-perl'],
);