File: Makefile.PL

package info (click to toggle)
libxml-smart-perl 1.6.9-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge
  • size: 276 kB
  • ctags: 204
  • sloc: perl: 3,827; makefile: 52
file content (19 lines) | stat: -rw-r--r-- 397 bytes parent folder | download | duplicates (2)
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'		=> 'XML::Smart' ,
    'VERSION_FROM'	=> 'lib/XML/Smart.pm' ,
    'PREREQ_PM'		=> {'Object::MultiType'  => 0.03} ,
    ($] >= 5.005 ?
      ( ABSTRACT_FROM => 'lib/XML/Smart.pm',
        AUTHOR        => 'Graciliano M. P. <gm@virtuasites.com.br>'
       ) : ()
     ),
);

1;