File: Build.PL

package info (click to toggle)
liburi-find-perl 20111103-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 172 kB
  • ctags: 20
  • sloc: perl: 687; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 928 bytes parent folder | download
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
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/perl -w

use Module::Build 0.30;

require 5.006;

my $build = Module::Build->new(
    module_name         => 'URI::Find',

    configure_requires  => {
        Module::Build   => '0.30'
    },

    build_requires      => {
        Test::More      => '0.88',
        Module::Build   => '0.30',
    },

    requires            => {
        perl            => '5.6.0',
        URI             => '1.00',
        URI::URL        => '5.00',
    },

    license             => 'perl',

    dist_author => 'Michael G Schwern <schwern@pobox.com>',

    meta_merge => {
        resources => {
            homepage        => 'http://search.cpan.org/dist/URI-Find',
            bugtracker      => 'http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Find',
            repository      => 'http://github.com/schwern/uri-find/tree/master',
        }
    },

    recursive_test_files        => 1,
);

$build->create_build_script;