2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-07-11 20:49:00 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-07-11 20:49:00 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Genometools(MakefilePackage):
|
|
|
|
"""genometools is a free collection of bioinformatics tools (in the realm
|
|
|
|
of genome informatics) combined into a single binary named gt."""
|
|
|
|
|
|
|
|
homepage = "http://genometools.org/"
|
2022-02-15 22:11:38 +08:00
|
|
|
url = "https://github.com/genometools/genometools/archive/refs/tags/v1.6.2.tar.gz"
|
2017-07-11 20:49:00 +08:00
|
|
|
|
2022-02-15 22:11:38 +08:00
|
|
|
version('1.6.2', sha256='974825ddc42602bdce3d5fbe2b6e2726e7a35e81b532a0dc236f6e375d18adac')
|
2020-03-26 22:01:24 +08:00
|
|
|
version('1.6.1', sha256='528ca143a7f1d42af8614d60ea1e5518012913a23526d82e434f0dad2e2d863f')
|
|
|
|
version('1.5.9', sha256='bba8e043f097e7c72e823f73cb0efbd20bbd60f1ce797a0e4c0ab632b170c909')
|
2017-07-11 20:49:00 +08:00
|
|
|
|
|
|
|
depends_on('perl', type=('build', 'run'))
|
2020-05-22 19:49:50 +08:00
|
|
|
depends_on('cairo+pdf')
|
2017-07-11 20:49:00 +08:00
|
|
|
depends_on('pango')
|
|
|
|
|
|
|
|
# build fails with gcc 7"
|
2020-03-26 22:01:24 +08:00
|
|
|
conflicts('%gcc@7.1.0:', when='@:1.5.9')
|
2017-07-11 20:49:00 +08:00
|
|
|
|
2020-08-28 23:02:42 +08:00
|
|
|
patch('signed.patch', when='%fj')
|
|
|
|
|
2017-07-11 20:49:00 +08:00
|
|
|
def install(self, spec, prefix):
|
|
|
|
make('install', 'prefix=%s' % prefix)
|
2018-05-15 00:10:19 +08:00
|
|
|
|
2019-11-30 05:00:44 +08:00
|
|
|
def setup_dependent_build_environment(self, env, dependent_spec):
|
|
|
|
env.set('CPATH', self.prefix.include.genometools)
|