File: Makefile.PL

package info (click to toggle)
libtest-html-content-perl 0.09-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 260 kB
  • sloc: perl: 1,109; makefile: 2
file content (23 lines) | stat: -rwxr-xr-x 668 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
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;