File: Makefile.PL

package info (click to toggle)
libhtml-packer-perl 2.110000-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: perl: 1,026; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 944 bytes parent folder | download
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
28
29
30
31
32
33
34
35
#!perl

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  NAME          => 'HTML::Packer',
  ABSTRACT_FROM => 'lib/HTML/Packer.pm',
  VERSION_FROM  => 'lib/HTML/Packer.pm',
  AUTHOR        => 'Lee Johnson <leejo@cpan.org>',
  LICENSE       => 'perl',
  PREREQ_PM => {
    'Regexp::RegGrp'        => '1.001_001',
    'CSS::Packer'           => "2.01",
    'JavaScript::Packer'    => "2.01",
    'Digest::SHA'           => 0, # core module
    'Safe::Isa'             => 0, # not core, not bothered about version
  },
  BUILD_REQUIRES => {
    'Test::More'               => 0,
  },
  META_MERGE => {
    resources => {
      license    => 'http://dev.perl.org/licenses/',
      homepage   => 'https://metacpan.org/module/HTML::Packer',
      bugtracker => 'https://github.com/leejo/html-packer-perl/issues',
      repository => 'https://github.com/leejo/html-packer-perl'
    },
  },
  test => {
    TESTS => 't/*.t',
  },
);