File: Build.PL

package info (click to toggle)
libtie-regexphash-perl 0.13-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 68 kB
  • ctags: 12
  • sloc: perl: 174; makefile: 35
file content (21 lines) | stat: -rw-r--r-- 520 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
use Module::Build;

my $build = Module::Build->new
    (
     module_name => 'Tie::RegexpHash',
     license => 'perl',
     requires => {
       'perl'                       => '5.005',
       'Carp'                       => 0,
     },
     recommends => {
     },
     build_requires => {
       'Test'                       => 0,
     },
     create_makefile_pl => 'traditional',
     dist_author        => 'Robert Rothenberg <rrwo at cpan.org>',
     sign => 1,
);

$build->create_build_script;