File: Build.PL

package info (click to toggle)
liblibrary-callnumber-lc-perl 0.22-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 96 kB
  • ctags: 11
  • sloc: perl: 337; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 564 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
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Library::CallNumber::LC',
    license             => 'perl',
    dist_author         => 'Daniel Wells <dbw2@calvin.edu>',
    dist_version_from   => 'lib/Library/CallNumber/LC.pm',
    requires => {
      'Math::BigInt' => 0,
    },
    build_requires => {
        'Test::More' => 0,
        'Math::BigInt' => 0,
    },
    add_to_cleanup      => [ 'Library-CallNumber-LC-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();