File: Makefile.PL

package info (click to toggle)
emboss-explorer 2.2.0-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 368 kB
  • sloc: perl: 1,765; sh: 118; makefile: 23
file content (15 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use 5.6.0;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'EMBOSS::GUI',
    VERSION_FROM  => 'lib/EMBOSS/GUI.pm',
    PREREQ_PM     => {
		Parse::RecDescent => 1.90,
		Mail::Send => 0
	},
	PREREQ_FATAL => 1,
    ABSTRACT_FROM => 'lib/EMBOSS/GUI.pm',
    AUTHOR        => 'Luke McCarthy <lukem@gene.pbi.nrc.ca>',
    EXE_FILES     =>  => [ qw( bin/acdcheck bin/mkstatic ) ]
);