File: Build.PL

package info (click to toggle)
libtest-pod-content-perl 0.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 116 kB
  • ctags: 8
  • sloc: perl: 166; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict; use warnings;
use Module::Build;
Module::Build->new(
    dist_author        => 'Martin Kutter <martin.kutter@fen-net.de>',
    create_makefile_pl => 'small',
    dist_abstract      => 'Test Pod content',
    dist_name          => 'Test-Pod-Content',
    version_from       => 'Test::Pod::Content',
    module_name        => 'Test::Pod::Content',
    license            => 'perl',
    requires           => {
        'version'             => 0,
        'Test::More'          => 0,
        'Pod::Simple'         => 0,
    }
)->create_build_script;