File: Build.PL

package info (click to toggle)
libalgorithm-naivebayes-perl 0.04-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 253; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
use Module::Build;

my $build = Module::Build->new
  (
   module_name => 'Algorithm::NaiveBayes',
   license => 'perl',
   create_makefile_pl => 'traditional',
   requires => {
		'List::Util' => 0,
	       },
  );

$build->create_build_script;