File: Makefile.PL

package info (click to toggle)
libpdl-ccs-perl 1.24.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 612 kB
  • sloc: perl: 2,720; makefile: 3; ansic: 3
file content (26 lines) | stat: -rw-r--r-- 866 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
use ExtUtils::MakeMaker;
require "../pdlmaker.plm";
pdlmaker_init();

WriteMakefile(
              NAME=>'PDL::CCS::Nd',
              VERSION_FROM => '../CCS.pm',
              LICENSE => 'perl',
              #PM => { (map {$_=>"\$(INST_LIBDIR)/CCS/$_"} <*.pm>), },
              DIR =>[
                     #'Old',
                     'Utils',
                     'Ufunc',
                     'Ops',
                     'MatrixOps',
                     'IO',
                    ], ##-- debug#2
              PREREQ_PM => {
                            'PDL' => 0,
                            'PDL::VectorValued' => '1.0.4',
                           },
              CONFIGURE_REQUIRES => {
                                     'PDL'=>0,
                                     'ExtUtils::MakeMaker'=>0,
                                    },
             );