File: Makefile.PL

package info (click to toggle)
libnet-frame-device-perl 1.12-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 188 kB
  • sloc: perl: 538; makefile: 12
file content (33 lines) | stat: -rw-r--r-- 1,033 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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# $Id: Makefile.PL 359 2015-01-04 16:49:32Z gomor $
#
use ExtUtils::MakeMaker;

require v5.6.1;

WriteMakefile(
   NAME          => 'Net::Frame::Device',
   VERSION_FROM  => 'lib/Net/Frame/Device.pm',
   LICENSE       => 'artistic',
   ABSTRACT_FROM => 'lib/Net/Frame/Device.pm',
   AUTHOR        => 'GomoR <gomor_at_cpan.org>',
   PREREQ_PM     => {
      Class::Gomor              => '1.00',
      Net::Libdnet              => 0,
      Net::Libdnet6             => 0,
      Net::IPv4Addr             => 0,
      Net::IPv6Addr             => 0,
      Net::Pcap                 => '0.12',
      Net::Write                => '1.00',
      Net::Frame                => 0,
      Net::Frame::Dump          => '1.08',  # For Dump::Online2
      Net::Frame::Layer::IPv6   => 0,
      Net::Frame::Layer::ICMPv6 => 0,
      Net::Frame::Simple        => '1.05',  # Cause of a bug in ICMPv6 unpacking
   },
   MIN_PERL_VERSION => '5.6.1',
   EXE_FILES        => [
      'bin/nfd-debug-devices.pl',
      'bin/nfd-print-routes6.pl',
   ],
);