File: Build.PL

package info (click to toggle)
libproc-fork-perl 0.61-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 76 kB
  • ctags: 6
  • sloc: perl: 77; makefile: 41
file content (14 lines) | stat: -rw-r--r-- 382 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
	module_name         => 'Proc::Fork',
	license             => 'perl',
	dist_author         => 'Aristotle Pagaltzis <pagaltzis@gmx.de>',
	build_requires      => { 'Test::More' => 0 },
	add_to_cleanup      => [ 'Proc-Fork-*' ],
	create_makefile_pl  => 'traditional',
);

$builder->create_build_script();