1# $Id: Makefile.PL,v 1.1.1.1 2003/07/03 13:42:22 matt Exp $
2
3use strict;
4
5use ExtUtils::MakeMaker;
6
7unlink(".do_net");
8if (prompt("Some of the tests do network checks. Would you like to run these?", "N") =~ /^y/i) {
9    open(TOUCH, ">.do_net") || die $!;
10    print TOUCH "This file just means we do the network checks. Remove it to turn them off\n";
11    close TOUCH;
12}
13
14WriteMakefile(
15    'NAME' => 'Net::SenderBase',
16    'VERSION_FROM' => 'lib/Net/SenderBase.pm',
17    'PREREQ_PM' => {
18        'Net::DNS' => 0.23,
19        'Test::More' => 0,
20        'Getopt::Euclid' => 0,
21    },
22    'ABSTRACT_FROM' => 'lib/Net/SenderBase.pm',
23    'AUTHOR' => 'Matt Sergeant <matt@sergeant.org>',
24);
25
26