Augustus update hash (#7286)

* augustus: 3.3 package hash changed

* augustus: bamtools libraries now seem to be in lib64
This commit is contained in:
Levi Baber 2018-02-20 00:06:40 -06:00 committed by Todd Gamblin
parent d9bec1a1f7
commit 12a670a556

View File

@ -32,7 +32,7 @@ class Augustus(MakefilePackage):
homepage = "http://bioinf.uni-greifswald.de/augustus/"
url = "http://bioinf.uni-greifswald.de/augustus/binaries/augustus-3.3.tar.gz"
version('3.3', '9ebe494df78ebf6a43091cfc8551050c',
version('3.3', '93691d9aafc7d3d0e1adf31ec308507f',
url='http://bioinf.uni-greifswald.de/augustus/binaries/augustus-3.3.tar.gz')
version('3.2.3', 'b8c47ea8d0c45aa7bb9a82626c8ff830',
url='http://bioinf.uni-greifswald.de/augustus/binaries/old/augustus-3.2.3.tar.gz')
@ -50,7 +50,7 @@ def edit(self, spec, prefix):
makefile.filter('INCLUDES = *',
'INCLUDES = -I$(BAMTOOLS)/include/bamtools ')
makefile.filter('LIBS = -lbamtools -lz',
'LIBS = $(BAMTOOLS)/lib/bamtools'
'LIBS = $(BAMTOOLS)/lib64/'
'/libbamtools.a -lz')
with working_dir(join_path('auxprogs', 'bam2hints')):
makefile = FileFilter('Makefile')
@ -59,7 +59,7 @@ def edit(self, spec, prefix):
makefile.filter('INCLUDES = /usr/include/bamtools',
'INCLUDES = $(BAMTOOLS)/include/bamtools')
makefile.filter('LIBS = -lbamtools -lz',
'LIBS = $(BAMTOOLS)/lib/bamtools'
'LIBS = $(BAMTOOLS)/lib64/'
'/libbamtools.a -lz')
def install(self, spec, prefix):