File: Build.PL

package info (click to toggle)
pkg-components 0.6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 236 kB
  • ctags: 15
  • sloc: perl: 423; sh: 157; makefile: 16
file content (21 lines) | stat: -rw-r--r-- 607 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
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Debian::Debhelper::Dh_components',
    license             => 'perl',
    dist_author         => 'Nicholas Bamber <nicholas@periapt.co.uk>',
    dist_version_from   => 'lib/Debian/Debhelper/Dh_components.pm',
    build_requires => {
        'Test::More' => 0,
    },
    requires => {
        'version'    => 0,
        'Debian::Control' => 0.77,
    },
    create_makefile_pl => 'traditional',
    add_to_cleanup      => [ 'Debian-Debhelper-Dh_components-*' ],
);

$builder->create_build_script();