File: Makefile.PL

package info (click to toggle)
altree 1.3.1-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,044 kB
  • sloc: perl: 3,482; ansic: 1,716; sh: 187; pascal: 66; makefile: 11
file content (17 lines) | stat: -rw-r--r-- 777 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use 5.008004;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'altree',
    PMLIBDIRS         => [ 'ALTree' ],
    DIR               => [ 'CUtils' ],
    VERSION_FROM      => 'progs/altree',
    depend	      => { Makefile => '$(VERSION_FROM)' },
    LICENSE           => 'perl',
    PREREQ_PM         => {}, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'progs/altree', # retrieve abstract from module
       AUTHOR         => 'Claire Bardel <Claire.Bardel@univ-lyon1.fr>') : ()),
    EXE_FILES         => [qw (progs/altree progs/altree-add-S progs/altree-convert)],
);