File: Build.PL

package info (click to toggle)
libtie-ixhash-perl 1.23-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 100 kB
  • ctags: 29
  • sloc: perl: 349; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 500 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 strict;
use Module::Build;
#created by eumm-migrate.pl

my $build = Module::Build->new(
  'auto_configure_requires' => 0,
  'module_name' => 'Tie::IxHash',
  'requires' => {
    'perl' => '5.005',
  },
  'build_requires' => {
    'Test::More' => 0,
  },
  'meta_merge' => {
    'resources' => {
      'repository' => 'git://github.com/chorny/Tie-IxHash.git'
    }
  },
  'license' => 'perl',
  'dist_version_from' => 'lib/Tie/IxHash.pm',
);

$build->create_build_script();