-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_options.sh
executable file
·248 lines (226 loc) · 5.87 KB
/
build_options.sh
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#
# Script for testing various build configurations
# $1 - clone command -eg "git clone -b static-install https://github.com/drjsanger/Bio-HTS.git"
# $2 - the test to be run
#
export PERL5LIB_ORIG=$PERL5LIB
#
#test the Build.PL with various options
#
if [ "$2" = "BUILD_SYSTEM_INSTALLED_HTSLIB" ]; then
echo Installs htslib, then runs Build process
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
sudo make install
cd ..
$1
cd Bio-HTS
perl Build.PL
./Build
export PERL5LIB=$PERL5LIB:$(pwd -P)/lib:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/Faidx
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "BUILD_SYSTEM_INSTALL_ALL" ]; then
echo Installs htslib, then runs Build process
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
sudo make install
sudo ldconfig
cd ..
$1
cd Bio-HTS
perl Build.PL
sudo ./Build install
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
exit 0
fi
if [ "$2" = "BUILD_LOCAL_INSTALLED_HTSLIB" ]; then
echo Installs htslib to a local dir, then runs Build process
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
make prefix=~/localsw install
export HTSLIB_DIR=
cd ..
$1
cd Bio-HTS
perl Build.PL --prefix=~/localsw
./Build
export PERL5LIB=$PERL5LIB:$(pwd -P)/lib:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/Faidx
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "BUILD_HTSLIB_DIR_ENV" ]; then
echo Makes htslib, then runs Build process. Should run from this location.
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
make
export HTSLIB_DIR="$PWD"
echo $HTSLIB_DIR
cd ..
$1
cd Bio-HTS
perl Build.PL
./Build
export PERL5LIB=$PERL5LIB:$(pwd -P)/lib:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/Faidx
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "BUILD_HTSLIB_DIR_FLAG" ]; then
echo makes htslib, then runs Build process
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
make
export HTSLIB_DIR_FOR_FLAG="$PWD"
echo $HTSLIB_DIR_FOR_FLAG
cd ..
$1
cd Bio-HTS
perl Build.PL --htslib=$HTSLIB_DIR_FOR_FLAG
./Build
export PERL5LIB=$PERL5LIB:$(pwd -P)/lib:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/:$(pwd -P)/blib/arch/auto/Bio/DB/HTS/Faidx
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "BUILD_HTSLIB_DIR_WITH_STATIC_FLAG" ]; then
echo Installs htslib, then runs Bio::DB::HTS Build process with static flag
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
make
rm -f libhts.so*
export HTSLIB_DIR_FOR_FLAG="$PWD"
echo $HTSLIB_DIR_FOR_FLAG
cd ..
$1
cd Bio-HTS
export HTSLIB_DIR=$HTSLIB_DIR_FOR_FLAG
perl Build.PL --static=1 --install_base=~/localsw
./Build
echo "Build of Bio::DB::HTS completed"
rm -rf $HTSLIB_DIR_FOR_FLAG
export PERL5LIB=$PERL5LIB:~/localsw
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
#TODO Alien::HTSlib dependency resolver
#TODO pkg-config test
#
#test the INSTALL.pl script with various options
#
if [ "$2" = "INSTALL_WITH_SYSTEM_HTSLIB" ]; then
echo INSTALL.pl with system install of htslib for running
git clone -b master --depth=1 https://github.com/samtools/htslib.git
cd htslib
sudo make install
sudo ldconfig
cd ..
$1
cd Bio-HTS
perl INSTALL.pl
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
exit 0
fi
if [ "$2" = "INSTALL_WITH_OTHER_HTSLIB" ]; then
echo INSTALL.pl, with a htslib installed elsewhere for running
export LD_LIBRARY_PATH_ORIG=$LD_LIBRARY_PATH
git clone -b master --depth=1 https://github.com/samtools/htslib.git htslib_run_location
cd htslib_run_location
make
cd ..
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd -P)/htslib_run_location
$1
cd Bio-HTS
perl INSTALL.pl
cd t
for f in $(ls *.t) ;
do
perl $f
done
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH_ORIG
echo "Completed $2"
exit 0
fi
if [ "$2" = "INSTALL_PREFIX_PATH" ]; then
echo INSTALL.pl with prefix at end of line
$1
cd Bio-HTS
perl INSTALL.pl ~/prefix_path_test
export PERL5LIB=$PERL5LIB:~/prefix_path_test/lib/perl5/x86_64-linux-gnu-thread-multi/:~/prefix_path_test/lib/perl5/x86_64-linux-gnu-thread-multi/auto
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "INSTALL_PREFIX_FLAG" ]; then
echo INSTALL.pl with prefix at end of line
$1
cd Bio-HTS
perl INSTALL.pl --prefix=~/prefix_flag_test
export PERL5LIB=$PERL5LIB:~/prefix_flag_test/lib/perl5/x86_64-linux-gnu-thread-multi/:~/prefix_flag_test/lib/perl5/x86_64-linux-gnu-thread-multi/auto
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
export PERL5LIB=$PERL5LIB_ORIG
exit 0
fi
if [ "$2" = "INSTALL_STATIC_FLAG" ]; then
echo INSTALL.pl with static option as flag
$1
cd Bio-HTS
perl INSTALL.pl --static
cd t
for f in $(ls *.t) ;
do
perl $f
done
echo "Completed $2"
exit 0
fi
echo Build test option $2 not found