File: Build.PL

package info (click to toggle)
libtie-array-csv-perl 0.08-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: perl: 302; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 628 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
use strict;
use warnings;

use Module::Build 0.3601;

my $builder = Module::Build->new(
  module_name => 'Tie::Array::CSV',
  dist_author => 'Joel Berger',
  license => 'perl',
  requires => {
    'perl' => 5.006001,
    'Tie::File' => 0,
    'Text::CSV' => 0,
    'Scalar::Util' => 0,
  },
  configure_requires => {
    'Module::Build' => 0.3601,
  },
  meta_merge => {
    resources  => {
      repository => "http://github.com/jberger/Tie-Array-CSV",
      bugtracker => "http://github.com/jberger/Tie-Array-CSV/issues",
    },
    no_index => {
      file => [ 'README.pod' ],
    },
  }
);

$builder->create_build_script;