File: Build.PL

package info (click to toggle)
libhtml-formattext-withlinks-perl 0.15-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 246; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 766 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use strict;
use Module::Build;

Module::Build
    ->new(
        module_name =>  "HTML::FormatText::WithLinks",
        license     =>  'perl',
        requires    =>  {
                            'HTML::FormatText'    =>  2,
                            'HTML::TreeBuilder'   =>  0,
                            'URI::WithBase'       =>  0,  
        },
        build_requires  =>  {
                            'Test::More'          =>  0,
                            },
        create_makefile_pl  =>  'traditional',
        meta_merge => {
                           resources => {
                                   repository => 'https://github.com/struan/html-formattext-withlinks'
                           }
        },
        )
    ->create_build_script;