spack/var/spack/repos/builtin/packages/fraggenescan/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files
- [x] update all licensed files to say 2013-2021 using
      `spack license update-copyright-year`
- [x] appease mypy with some additions to package.py that needed
      for oneapi.py
2021-01-02 12:12:00 -08:00

26 lines
929 B
Python

# Copyright 2013-2021 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 *
class Fraggenescan(MakefilePackage):
"""FragGeneScan is an application for finding (fragmented) genes in short
reads. It can also be applied to predict prokaryotic genes in
incomplete assemblies or complete genomes."""
homepage = "https://sourceforge.net/projects/fraggenescan/"
url = "https://downloads.sourceforge.net/project/fraggenescan/FragGeneScan1.31.tar.gz"
version('1.31', sha256='cd3212d0f148218eb3b17d24fcd1fc897fb9fee9b2c902682edde29f895f426c')
build_targets = ['clean', 'hmm.obj']
def edit(self, spec, prefix):
filter_file('gcc', spack_cc, 'Makefile', string=True)
def install(self, spec, prefix):
install_tree('.', prefix.bin)