ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV-ADNS/Makefile.PL
Revision: 1.3
Committed: Sat Dec 8 15:30:20 2007 UTC (16 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.2: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2     use EV::MakeMaker;
3    
4     print <<EOF;
5    
6     ***
7     *** This is an interface to the asynchronous dns resolver library, libadns
8     *** You need to have it installed before using this module.
9     ***
10     *** For debian/ubuntu, this would get you there: apt-get install libadns1-dev
11     ***
12    
13     EOF
14    
15     my $mm = MM->new({EV::MakeMaker::ev_args (
16     dist => {
17     PREOP => 'pod2text ADNS.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
18     COMPRESS => 'gzip -9v',
19     SUFFIX => '.gz',
20     },
21     NAME => "EV::ADNS",
22     VERSION_FROM => "ADNS.pm",
23     LIBS => ["-ladns"],
24     PREREQ_FATAL => 1,
25     PREREQ_PM => {
26 root 1.3 EV => 1.72,
27 root 1.1 },
28     EXTRA_META => q{
29     configure_requires:
30 root 1.2 EV: 1.8
31 root 1.1 },
32    
33     )});
34    
35     $mm->flush;
36