File: Build.PL

package info (click to toggle)
libmath-symbolic-perl 0.613-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,268 kB
  • sloc: perl: 12,638; makefile: 9
file content (23 lines) | stat: -rw-r--r-- 506 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use Module::Build;

my $b = Module::Build->new
  (
   module_name => 'Math::Symbolic',
   dist_author => 'Steffen Mueller <smueller@cpan.org>',
   license => 'perl',
   requires => {
	   			Memoize => '1.01',
				'Parse::RecDescent' => '0',
				'Data::Dumper' => '0',
               },
   build_requires => {
                      'Test::More' => 0,
                     },
   create_makefile_pl => 'traditional',
#   sign => 1,
#   conflicts => {},
#   script_files => [],
  );

$b->create_build_script;