forked from tlawrence3/FAST
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
33 lines (29 loc) · 1.05 KB
/
Makefile.PL
File metadata and controls
33 lines (29 loc) · 1.05 KB
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
use 5.10.1;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
my @scripts = qw/alnpi alncut fascodon fascomp fasconvert fascut fasfilter fasgrep fashead fastail faspaste faslen faswc fasrc fassort fassub fastax fastaxsort fastr fasuniq fasxl gbfalncut gbfcut/;
WriteMakefile(
NAME => 'FAST',
AUTHOR => q{David H. Ardell <dhard@cpan.org>},
VERSION_FROM => 'lib/FAST.pm',
ABSTRACT_FROM => 'lib/FAST.pm',
LICENSE => 'Perl',
EXE_FILES => [ map { "bin/$_" } @scripts ],
INSTALLMAN3DIR => 'none',
MIN_PERL_VERSION => 5.10.1,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'Pod::Usage' => 0,
'Sort::Key' => 0,
'Sort::MergeSort' => 0,
'Bit::Vector' => 0
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'FAST-*' },
);