File: Build.PL

package info (click to toggle)
liblatex-decode-perl 0.05-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: perl: 1,070; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 749 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
25
26
27
28
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'LaTeX::Decode',
    license             => 'artistic_2',
    dist_author         => q{Francois Charette <firmicus@cpan.org>},
    dist_version_from   => 'lib/LaTeX/Decode.pm',
    build_requires => {
        'Test::More' => 0,
    },
    requires => {
        'perl' => 5.008,
        'File::Slurp' => 0,
        'Unicode::Normalize' => 0,
    },
    meta_merge => {
        resources => {
            repository => 'http://github.com/fc7/LaTeX-Decode',
        },
    },
    script_files => [ glob( "bin/*" ) ],
    add_to_cleanup      => [ 'LaTeX-Decode-*' ],
#    create_makefile_pl => 'traditional',
);

$builder->create_build_script();