File: Makefile.PL

package info (click to toggle)
libpdl-vectorvalued-perl 1.0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 232 kB
  • sloc: perl: 377; makefile: 3
file content (34 lines) | stat: -rw-r--r-- 989 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use ExtUtils::MakeMaker;

#@MY::pdpm = qw(Utils/Utils.pm);
require "./pdlmaker.plm";
pdlmaker_init();

WriteMakefile(
	      NAME         => 'PDL::VectorValued',
	      VERSION_FROM => 'VectorValued.pm',
	      ABSTRACT     => 'Assorted utilities for vector-valued PDLs',
	      AUTHOR       => 'Bryan Jurish',
	      LICENSE      => 'perl',
	      PREREQ_PM => {
			    PDL => 2.025, # really want 2.075 for $SIZE(N) access in RedoDimsCode for utils.pd
			    'Test::More' => 0,
			   },
	      CONFIGURE_REQUIRES => {
				     PDL => 0,
				    },
	      realclean => {
			    FILES => join(' ', qw(*~ *.tmp),(-e 'README.rpod' ? 'README.txt' : qw())),
			   },
	      META_MERGE => {
			     "meta-spec" => { version => 2 },
			     resources => {
					   repository => {
							  url => 'https://github.com/moocow-the-bovine/PDL-VectorValued.git',
							  type => 'git',
							  web => 'https://github.com/moocow-the-bovine/PDL-VectorValued',
							 },
					  },
			    },

	     );