
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
import glob
|
|
|
|
|
|
class SnapKorf(MakefilePackage):
|
|
"""SNAP is a general purpose gene finding program suitable for both
|
|
eukaryotic and prokaryotic genomes."""
|
|
|
|
homepage = "http://korflab.ucdavis.edu/software.html"
|
|
url = "http://korflab.ucdavis.edu/Software/snap-2013-11-29.tar.gz"
|
|
|
|
version('2013-11-29', sha256='e2a236392d718376356fa743aa49a987aeacd660c6979cee67121e23aeffc66a')
|
|
|
|
depends_on('perl', type=('build', 'run'))
|
|
depends_on('boost')
|
|
depends_on('sqlite')
|
|
depends_on('sparsehash')
|
|
|
|
conflicts('%gcc@5:', when='@2013-11-29')
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(prefix.bin)
|
|
|
|
progs = ['snap', 'fathom', 'forge', 'depend', 'exonpairs', 'hmm-info']
|
|
for p in progs:
|
|
install(p, prefix.bin)
|
|
|
|
files = glob.iglob('*.pl')
|
|
for file in files:
|
|
install(file, prefix.bin)
|
|
|
|
install_tree('Zoe', prefix.Zoe)
|
|
install_tree('HMM', prefix.HMM)
|
|
install_tree('DNA', prefix.DNA)
|
|
|
|
def setup_environment(self, spack_env, run_env):
|
|
run_env.set('ZOE', self.prefix)
|
|
run_env.prepend_path('PATH', self.prefix)
|