repeatscout: new package at 1.0.5 (#11409)

* repeatscout: new package at 1.0.5

* repeatscout: add trf runtime dependency

* repeatscout: add nseg runtime dependency
This commit is contained in:
Justin S 2019-05-15 16:04:17 -05:00 committed by Levi Baber
parent 19355cafae
commit 11bd795ca8

View File

@ -0,0 +1,24 @@
# 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)
# See the Spack documentation for more information on packaging.
from spack import *
class Repeatscout(MakefilePackage):
"""RepeatScout - De Novo Repeat Finder, Price A.L., Jones N.C. and Pevzner
P.A."""
homepage = "http://www.repeatmasker.org/RepeatModeler/"
url = "http://www.repeatmasker.org/RepeatScout-1.0.5.tar.gz"
version('1.0.5', sha256='bda6f782382f2b7dcb6a004b7da586d5046b3c12429b158e24787be62de6199c')
depends_on('perl', type='run')
depends_on('trf', type='run')
depends_on('nseg', type='run')
def edit(self, spec, prefix):
filter_file('^INSTDIR.*$', 'INSTDIR=%s' % prefix.bin, 'Makefile')