File: Build.PL

package info (click to toggle)
libfennec-lite-perl 0.4-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 96 kB
  • sloc: perl: 439; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 686 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
21
22
23
24
25
26
27
#!/usr/bin/perl
use 5.006;
use strict;
use warnings;
use Module::Build;

my $build = Module::Build->new(
    module_name => 'Fennec::Lite',
    license     => 'perl',
    dist_author => 'Chad Granum <exodist7@gmail.com>',
    create_readme => 1,
    requires => {
        'perl' => 5.006,
        'Test::More' => 0,
        'Test::Builder' => 0,
        'List::Util' => 0,
    },
    meta_merge => {
        resources => {
            repository => 'http://github.com/exodist/Fennec-Lite',
            bugtracker => 'http://github.com/exodist/Fennec-Lite/issues',
            homepage   => 'http://open-exodus.net/projects/Fennec-Lite'
        },
    }
);

$build->create_build_script;