File: Makefile.PL

package info (click to toggle)
libnet-libdnet-perl 0.96-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 420 kB
  • sloc: perl: 1,012; ansic: 311; makefile: 8
file content (25 lines) | stat: -rw-r--r-- 691 bytes parent folder | download
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
#
# $Id: Makefile.PL 25 2009-05-13 18:53:14Z gomor $
#
use ExtUtils::MakeMaker;

my $libs = qx{dumbnet-config --libs 2>/dev/null}
   || ['-L/lib -L/usr/lib -L/usr/local/lib -ldumbnet'];

my $inc = qx{dumbnet-config --cflags 2>/dev/null}
   || '-I/include -I/usr/include -I/usr/local/include';

WriteMakefile(
   NAME          => 'Net::Libdnet',
   VERSION_FROM  => 'lib/Net/Libdnet.pm',
   LICENSE       => 'bsd',
   ABSTRACT_FROM => 'lib/Net/Libdnet.pm',
   AUTHOR        => 'GomoR <gomor-cpan_at_gomor.org>',
   LIBS          => $libs,
   INC           => $inc,
   DEFINE        => '',
   EXE_FILES     => [ @{[glob('bin/*.pl')]} ],
   PREREQ_PM     => {
      Class::Gomor => 0,
   },
);