File: Makefile.PL

package info (click to toggle)
libhtml-copy-perl 1.31-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 96 kB
  • sloc: perl: 377; makefile: 2
file content (22 lines) | stat: -rwxr-xr-x 570 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
#!/usr/bin/env perl -w
use 5.008;
use strict;
use ExtUtils::MakeMaker;

my @programs_to_install = qw(htmlcopy);

WriteMakefile(
    'NAME'          => 'HTML::Copy',
    'VERSION_FROM'  => 'lib/HTML/Copy.pm',
    'EXE_FILES'     => [ map {"bin/$_"} @programs_to_install ],
    'PREREQ_PM'     => {
        'Test::More'   => 0,
        'HTML::Parser' => 3.40,
        'HTTP::Headers' => 0,
        'Class::Accessor' => 0,
        'URI' => 0
    },
    'dist'          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },	
    'clean'         => { FILES => 'HTML-Copy-*' },

);