aboutsummaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 94feff870bddf3adca83c76bf6b885ac5d0a4f5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- perl -*-
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME  => 'Example::Foobar',
    ABSTRACT_FROM => 'lib/Example/Foobar.pm',
    VERSION_FROM => 'lib/Example/Foobar.pm',
    AUTHOR    =>      'Sergey Poznyakoff <gray@gnu.org>',
    LICENSE   =>      'unrestricted',
    EXE_FILES =>      [ 'foobar' ],
    MIN_PERL_VERSION  => 5.014002,
    PREREQ_PM => {
	'Getopt::Long' => 2.34,
        'File::Basename' => 0,
        'File::Spec' => 0,  
        'File::Temp' => 0.23,
        'Pod::Find' => 0,
        'Pod::Man' => 0,
        'Pod::Usage' => 0
    },
);

Return to:

Send suggestions and report system problems to the System administrator.