File: Makefile.PL

package info (click to toggle)
libpoe-component-pcap-perl 0.04-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 120 kB
  • sloc: perl: 396; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 644 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
#!/usr/bin/perl
# $Id: Makefile.PL,v 1.3 2003/07/08 15:39:01 fletch Exp $

use ExtUtils::MakeMaker;

WriteMakefile
  ( NAME         => 'POE::Component::Pcap',
    AUTHOR       => 'Mike Fletcher <fletch+poe@phydeaux.org>',
    ABSTRACT     => 'POE component for non-blocking use of Net::Pcap.',
    VERSION_FROM => 'Pcap.pm',

    PM           => { 'Pcap.pm' => '$(INST_LIBDIR)/Pcap.pm' },
    PREREQ_PM    => { POE      => 0.26,
                      Net::Pcap => 0.04,
		      NetPacket::Ethernet => 0.01,
                    },
    dist         => { COMPRESS => 'gzip -9f',
                      SUFFIX   => 'gz',
                    },
  );