File: Makefile.PL

package info (click to toggle)
libcatalyst-view-pdf-reuse-perl 0.4-2.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 104 kB
  • sloc: perl: 166; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Catalyst::View::PDF::Reuse',
    AUTHOR              => 'Jon Allen <jj@pennysarcade.co.uk>',
    VERSION_FROM        => 'lib/Catalyst/View/PDF/Reuse.pm',
    ABSTRACT_FROM       => 'lib/Catalyst/View/PDF/Reuse.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Catalyst::View::TT' => 0,
        'PDF::Reuse' => 0,
        'File::chdir' => 0,
        'Template::Plugin::Procedural' => 0,
        'parent' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Catalyst-View-PDF-Reuse-*' },
);