-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile.PL
50 lines (40 loc) · 1.2 KB
/
Makefile.PL
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use strict;
use warnings;
use Inline::MakeMaker;
use Cwd;
my $orig_location = getcwd;
# need to get included src compiled here:
# cd to src dir
my $hmmer_src = __FILE__;
warn $hmmer_src, "\n";
$hmmer_src =~ s/Makefile.PL/src/;
chdir $hmmer_src;
system("./configure");
system("make");
chdir $orig_location;
WriteMakefile(
NAME => 'Bio::HMM::Logo',
AUTHOR => q{Jody Clements <[email protected]>},
VERSION_FROM => 'lib/Bio/HMM/Logo.pm',
ABSTRACT_FROM => 'lib/Bio/HMM/Logo.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'File::Slurp' => 0,
'Test::More' => 0,
'Test::Deep' => 0,
'Test::Warn' => 0,
'Consensus::Colors' => 0,
'Imager' => 0,
'SVG' => 0,
'JSON' => 0,
},
CONFIGURE_REQUIRES => {
'Inline::MakeMaker' => 0.45,
'ExtUtils::MakeMaker' => 6.52,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Bio-HMM-Logo-* _Inline Logo.inl' },
);