File: Build.PL

package info (click to toggle)
libhook-lexwrap-perl 0.24-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 136 kB
  • sloc: perl: 136; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 602 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
use strict;
use Module::Build;
#created by eumm-migrate.pl

my $build = Module::Build->new(
  'license' => 'perl',
  'add_to_cleanup' => ['Hook-LexWrap-*'],
  'build_requires' => {
    'Test::More' => 0
  },
  'dist_author' => 'Damian Conway (damian@conway.org)',
  'module_name' => 'Hook::LexWrap',
  'requires' => {
    'perl' => '5.006'
  },
  'meta_merge' => {
    'resources' => {
      'repository' => 'http://github.com/chorny/Hook-LexWrap',
    }
  },
  'dist_version_from' => 'lib/Hook/LexWrap.pm',
  'auto_configure_requires' => 0,
);

$build->create_build_script();