File: Makefile.PL

package info (click to toggle)
libobject-multitype-perl 0.05-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 80 kB
  • sloc: perl: 323; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 368 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
###############
# MAKEFILE.PL #
###############

use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'		=> 'Object::MultiType' ,
    'VERSION_FROM'	=> 'MultiType.pm' ,
    'PREREQ_PM'		=> {} ,
    ($] >= 5.005 ?
      ( ABSTRACT_FROM => 'MultiType.pm',
        AUTHOR        => 'Graciliano M. P. <gm@virtuasites.com.br>'
       ) : ()
     ),
);

1;