~ubuntu-branches/ubuntu/lucid/libtest-html-content-perl/lucid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'    => 'Test::HTML::Content',
    'VERSION_FROM'  => 'lib/Test/HTML/Content.pm', # finds $VERSION
    'PREREQ_PM'    => {
              'Test::Builder' => 0.0,
              'Test::More' => 0.0,
              'HTML::TokeParser' => 0.0}, # e.g., Module::Name => 1.1
);

use vars qw($have_test_inline);
BEGIN {
  eval { require Test::Inline;
         $have_test_inline = 1 };
  undef $@;
  if (! $have_test_inline) {
    print "Test::Inline is nice for testing the examples, but not necessary\n"
  };
};

1;