File: Build.PL

package info (click to toggle)
libasync-mergepoint-perl 0.02-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 56 kB
  • ctags: 3
  • sloc: perl: 67; makefile: 15
file content (17 lines) | stat: -rw-r--r-- 336 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;

use Module::Build;

my $build = Module::Build->new
  (
   module_name => 'Async::MergePoint',
   build_requires => {
                 'Test::Exception' => 0,
                 'Test::More' => 0,
               },
   license => 'perl',
   create_makefile_pl => 'traditional',
  );

$build->create_build_script;