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 (19 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use PDL::Core::Dev;
use ExtUtils::MakeMaker;
require "../pdlmaker.plm";
PDL::Core::Dev->import();

$package = ['utils.pd','Utils','PDL::VectorValued::Utils'];
%hash = pdlmaker_init($package);

$hash{AUTHOR}         = 'Bryan Jurish';
$hash{VERSION_FROM}   = '../VectorValued.pm',
$hash{PREREQ_PM}{PDL} = $hash{CONFIGURE_REQUIRES}{PDL} = 0;
#push(@{$hash{LIBS}}, '-lm');     ##-- ?
#$hash{INC} .= '';
#$hash{OBJECT} .= '';
$hash{DIR} = [];
$hash{realclean}{FILES} .= '*~ *.tmp';
$hash{NO_MYMETA} = 1;

WriteMakefile(%hash);