File: Build.PL

package info (click to toggle)
libcgi-application-plugin-tt-perl 1.05%2B~cs1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 440 kB
  • sloc: perl: 806; makefile: 17
file content (20 lines) | stat: -rw-r--r-- 573 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use Module::Build;

Module::Build->new(
    module_name => 'CGI::Application::Plugin::TT',
    license => 'perl',
    requires => {
        'CGI::Application' => '4.0',
        'Template' => '2.0',
        'Scalar::Util' => 0,
        'File::Spec' => 0,
        'Class::ISA' => 0,
    },
    recommends => {
        'CGI::Application::Plugin::DevPopup' => 0,
    },
    create_makefile_pl => 'traditional',
    dist_author => 'Cees Hek <cees@crtconsulting.ca>',
    dist_abstract => 'Plugin that adds Template Toolkit support to CGI::Application',
)->create_build_script;