File: Build.PL

package info (click to toggle)
libnet-iptrie-perl 0.7-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 200; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use Module::Build;
my $build = Module::Build->new
    (
     module_name => 'Net::IPTrie',
     license     => 'perl',
     requires    => {
	 'perl'          => '5.8.0',
	 'Class::Struct' => '0.63',
	 'Scalar::Util'  => '1.21',
	 'Test::More'    => '0',
	 'NetAddr::IP'   => '4.007',
     },
     create_makefile_pl => 'traditional',
     );
$build->create_build_script;