spack/var/spack/repos/builtin/packages/cdbfasta/package.py

23 lines
690 B
Python
Raw Normal View History

2022-01-13 03:21:41 +08:00
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
2017-07-06 23:10:25 +08:00
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
2017-07-06 23:10:25 +08:00
from spack import *
class Cdbfasta(MakefilePackage):
"""Fast indexing and retrieval of fasta records from flat file databases"""
homepage = "https://github.com/gpertea/cdbfasta"
git = "https://github.com/gpertea/cdbfasta.git"
2017-07-06 23:10:25 +08:00
version('2017-03-16', commit='b3e481fe02dfbc767a3842bcb1b687c60376a5e8')
2017-07-06 23:10:25 +08:00
2018-03-08 07:42:37 +08:00
depends_on('zlib')
2017-07-06 23:10:25 +08:00
def install(self, spec, prefix):
mkdirp(prefix.bin)
install('cdbfasta', prefix.bin)
install('cdbyank', prefix.bin)