File: Build.PL

package info (click to toggle)
libmarc-transform-perl 0.003005-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 212 kB
  • ctags: 16
  • sloc: perl: 1,589; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 545 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
use 5.010000;
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
	module_name           => 'MARC::Transform'
	, license             => 'perl'
	, dist_version_from   => 'lib/MARC/Transform.pm'
	, create_makefile_pl  => 'traditional'
    , dist_author         => 'Stephane Delaune <delaune.stephane@gmail.com>'
    , add_to_cleanup      => [ 'MARC-Transform-*' ]
    , requires => {qw<
	Scalar::Util 0
	MARC::Record 0
    >}
    , build_requires => {qw<
	Test::More 0
	YAML 0
    >}
);

$builder->create_build_script;