forked from Ensembl/Bio-DB-HTS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
184 lines (149 loc) · 5.25 KB
/
Build.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#!/usr/bin/perl
# Copyright [1999-2016] EMBL-European Bioinformatics Institute
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
use strict;
use warnings;
use Module::Build;
my $class = Module::Build->subclass(
class => 'Module::Build::HTS',
);
my $build = $class->new(
module_name => 'Bio::DB::HTS',
dist_version_from => 'lib/Bio/DB/HTS.pm',
dist_author => 'Rishi Nag',
dist_abstract => 'Perl interface to HTS library for DNA sequencing',
license => 'Apache_2_0',
extra_compiler_flags => [
# must match DFLAGS in HTSlib Makefile
'-D_IOLIB=2', '-D_FILE_OFFSET_BITS=64',
# warnings not treated as errors
'-Wno-error',
# Don't care about unused results from function calls
'-Wno-unused-result', ],
build_requires => { 'ExtUtils::CBuilder' => 0, },
configure_requires => { 'Module::Build' => 0.42, },
requires => { 'perl' => '5.008', 'Bio::Root::Version' => '1.006009001', },
meta_merge => {
'resources' => {
'repository' => 'https://github.com/Ensembl/Bio-DB-HTS',
},
},
);
$build->find_hts;
$build->set_include_and_compiler_flags;
$build->create_build_script;
exit 0;
package Module::Build::HTS;
use Module::Load::Conditional qw(can_load);
use base 'Module::Build';
sub find_hts {
my ($self) = @_;
# If either of these are set, we expect to find the htslib files there:
# (They're explicitly set by the user, so we shouldn't fall back to
# finding another copy somewhere else.)
if (my $dir = $self->args('htslib')) {
return 1 if $self->find_hts_in_build_dir($dir);
return 1 if $self->find_hts_in_install_dir($dir);
$self->die_hts_not_found(
"--htslib '$dir' command line parameter does not contain expected files\n"
);
}
elsif ($dir = $ENV{'HTSLIB_DIR'}) {
return 1 if $self->find_hts_in_build_dir($dir);
return 1 if $self->find_hts_in_install_dir($dir);
$self->die_hts_not_found(
"HTSLIB_DIR=$ENV{HTSLIB_DIR} environment variable does not contain expected files\n"
);
}
# Search through remaining possible (but not fatal) locations:
my $found = 0;
foreach my $dir (
$self->prefix,
from_Alien(),
scalar `pkg-config --variable=libdir htslib 2>/dev/null`,
qw{ /usr /usr/local /usr/share /opt/local },
) {
if ($dir and $self->find_hts_in_install_dir($dir)) {
$found = 1;
last;
}
}
return 1 if $found;
$self->die_hts_not_found();
}
sub set_include_and_compiler_flags {
my ($self) = @_;
my $hts_include = $self->config_data('hts_include');
my $hts_lib = $self->config_data('hts_lib');
my $static = $self->args('static');
$self->include_dirs([$hts_include]);
if($static){
$self->extra_linker_flags("-L$hts_lib", '-lhts', '-lpthread', '-lz');
}else{
$self->extra_linker_flags("-L$hts_lib", "-Wl,-rpath,$hts_lib", '-lhts', '-lpthread', '-lz');
}
}
# Look for the library and header in the location where htslib was compiled
sub find_hts_in_build_dir {
my ($self, $root) = @_;
chomp($root);
$root =~ s{/$}{};
$root =~ s{/(lib|include|include/htslib)$}{};
my $hts_lib = "$root";
my $hts_include = "$root/htslib";
if (-f "$hts_lib/libhts.a" && -f "$hts_include/hts.h") {
$self->config_data('hts_lib' => $hts_lib);
$self->config_data('hts_include' => $hts_include);
return 1;
}
else {
return 0;
}
}
sub find_hts_in_install_dir {
my ($self, $root) = @_;
chomp($root);
$root =~ s{/$}{};
$root =~ s{/(lib|include|include/htslib)$}{};
my $hts_lib = "$root/lib";
my $hts_include = "$root/include/htslib";
if (-f "$hts_lib/libhts.a" && -f "$hts_include/hts.h") {
$self->config_data('hts_lib' => $hts_lib);
$self->config_data('hts_include' => $hts_include);
return 1;
}
else {
return 0;
}
}
sub die_hts_not_found {
my ($self, $msg) = @_;
$msg ||= '';
die $msg, <<END;
This module requires htslib (http://htslib/org)
Install it if you have not done so already.
This script will attempt to locate htslib by looking for hts.h and libhts.a in:
1. --htslib command line argument
2. HTSLIB_DIR environment variable
3. --prefix command line argument (which also sets installation location)
4. Alien::HTSlib dependency resolver
5. pkg-config (extra directories can be set in PKG_CONFIG_PATH environment variable)
6. common library locations: /usr /usr/local, /usr/share, /opt/local
END
}
sub from_Alien {
can_load(
modules => { 'Alien::HTSlib' => undef, 'File::ShareDir' => undef }
) && File::ShareDir::dist_dir('Alien-HTSlib');
}