File: Makefile.PL

package info (click to toggle)
libhttp-recorder-perl 0.07-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 112 kB
  • sloc: perl: 676; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 777 bytes parent folder | download | duplicates (3)
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
26
27
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
  NAME         => 'HTTP::Recorder',
  VERSION_FROM => 'lib/HTTP/Recorder.pm',
  AUTHOR       => 'Shmuel Fomberg (semuelf@cpan.org)',
  PREREQ_PM    => {
    LWP::UserAgent        => 0,
    HTML::TokeParser      => 0,
    URI::Escape           => 0,
    URI::QueryParam       => 0,
    HTTP::Request::Params => 0,
    HTTP::Proxy           => 0,
    Getopt::Long          => 0,
    Pod::Usage            => 0,
    HTML::Parser          => 0,
  },
  EXE_FILES => [ qw(
      bin/httprecorder
      ) ],
  META_MERGE => {
    resources =>
      {repository => 'https://github.com/semuel/perl-cpan-http-recorder.git',},
  },
);