File: Makefile.PL

package info (click to toggle)
libtemplate-plugin-class-perl 0.14-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 64 kB
  • sloc: perl: 55; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 263 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'         => 'Template::Plugin::Class',
    'VERSION_FROM' => 'lib/Template/Plugin/Class.pm',
    'PREREQ_PM'    => {
        'Test::More' => 0,
        'Template'   => 0,
    }
);