File: Makefile.PL

package info (click to toggle)
net-snmp 5.9.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 38,720 kB
  • sloc: ansic: 282,878; perl: 17,704; sh: 12,151; makefile: 2,711; python: 734; xml: 663; pascal: 62; sql: 47
file content (14 lines) | stat: -rw-r--r-- 502 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'		=> 'AnyData::SNMP',
    'VERSION_FROM'	=> 'Storage.pm', # finds $VERSION
    'PREREQ_PM'		=> {# SNMP => 5.0,
			    AnyData => 0}, # e.g., Module::Name => 1.1
    'PM'                => { 
	'Format.pm' => '$(INST_LIBDIR)/Format/SNMP.pm',
	'Storage.pm' => '$(INST_LIBDIR)/Storage/SNMP.pm',
    },
    'EXE_FILES'         => [qw(netsh)]
);