File: Makefile.PL

package info (click to toggle)
autodia 2.14-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 644 kB
  • sloc: perl: 6,102; makefile: 13
file content (19 lines) | stat: -rw-r--r-- 537 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
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'		=> 'Autodia',
    'VERSION_FROM'	=> 'lib/Autodia.pm', # finds $VERSION
    'PREREQ_PM'		=> {
				Getopt::Std  => 0,
				Data::Dumper => 0,
				File::Find   => 0,
				Template     => 1,
				# GraphViz     => 0, # optional
				# SpringGraph  => 0.02, # optional
				# VCG	     => 0.4, # optional
				XML::Simple  => 0,
			    }, 
    'EXE_FILES' => [ 'autodia.pl' ],
    
);