blob: 64936dc840546aa1cdfd7bd5e2c041b50d505a15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!perl -w
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(NAME => 'Pod::Functions',
VERSION_FROM => 'Functions_pm.PL',
LICENSE => 'perl',
PREREQ_PM => {},
ABSTRACT_FROM => 'Functions_pm.PL',
AUTHOR => 'Perl 5 Porters <perlbug@perl.org>',
INSTALLDIRS => 'perl',
PL_FILES => {'Functions_pm.PL' => 'Functions.pm'},
PM => {'Functions.pm' => '$(INST_LIBDIR)/Functions.pm'},
clean => {FILES => 'Functions.pm'},
);
|