File: Build.PL

package info (click to toggle)
libtemplate-plugin-htmltotext-perl 0.03-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 76 kB
  • sloc: perl: 29; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 550 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Template::Plugin::HtmlToText',
    license             => 'perl',
    dist_author         => 'Fayland Lam <fayland@gmail.com>',
    dist_version_from   => 'lib/Template/Plugin/HtmlToText.pm',
    create_makefile_pl  => 'traditional',
    build_requires => {
    	'Test::More' => 0,
        'Template'   => 0,
        'HTML::TreeBuilder' => 0,
        'HTML::FormatText'  => 0,
    },
);
$builder->create_build_script();

1;