Used quoted strings in Bio::Species to avoid a 'Invalid [] range in regex' error...
[bioperl-live.git] / travis_scripts / dependency_installs
blob93443d72f93df732141d9b80e52eaf31c0cefb93
1 #!/bin/bash
3 mkdir travis_builds
5 cd travis_builds
7 # samtools
8 git clone https://github.com/samtools/samtools.git
9 cd samtools
10 git checkout tags/0.1.18
11 perl -p -i -e 's/^(CFLAGS=\s+)[^\n]*/$1-g -Wall -O2 -fPIC #-m64 #-arch ppc/' Makefile
12 make 2>&1 | tail -n 1
13 cd ..
15 # push Bio-Root to front
16 git clone https://github.com/bioperl/Bio-Root.git
17 export PERL5LIB=$( pwd )/Bio-Root/lib:$( pwd ):$PERL5LIB
19 export SAMTOOLS=$( pwd )/samtools
21 echo "Bio::DB::Sam installation"
22 cpanm Bio::DB::Sam 2>&1 | tail -n 10
24 exit 0