Hi, I am trying to install a static version of PANDAseq. I have modified pandaseq to use PANDAseq vers. 2.11 and toolchain foss-2016b. I have added:
configopts = ['--enable-static=yes'] The installation was: COMPLETED: Installation ended successfully. However, I received the "error while loading shared libraries: libbz2.so.1.0". What other options should I use to create a static version? Thank you, Robert ----- name = 'PANDAseq' version = '2.11' homepage = 'https://github.com/neufeld/pandaseq' description = """PANDAseq assembles Illumina Solexa overlapping pair-end reads.""" toolchain = {'name': 'foss', 'version': '2016b'} configopts = ['--enable-static=yes'] # source_urls = ['https://github.com/neufeld/pandaseq/archive/v2.11.tar.gz'] sources = [SOURCELOWER_TAR_GZ] dependencies = [ ('libtool', '2.4.6'), ('bzip2', '1.0.6'), ('zlib', '1.2.8'), ] builddependencies = [('Autoconf', '2.69')] preconfigopts = "./autogen.sh &&" sanity_check_paths = { 'files': ['bin/pandaseq', 'bin/pandaseq-checkid', 'bin/pandaseq-hang', 'bin/pandaxs', 'lib/libpandaseq.%s' % SHLIB_EXT, 'lib/libpandaseq.a', 'lib/pkgconfig/pandaseq-%(version_major)s.pc'], 'dirs': ['include/pandaseq-%(version_major)s'], } moduleclass = 'bio'

