2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 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-03-29 10:33:34 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-03-29 10:33:34 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class StadenIoLib(AutotoolsPackage):
|
2017-06-25 13:22:55 +08:00
|
|
|
"""Io_lib is a library for reading/writing various bioinformatics
|
2017-03-29 10:33:34 +08:00
|
|
|
file formats."""
|
|
|
|
|
|
|
|
homepage = "http://staden.sourceforge.net/"
|
|
|
|
url = "https://sourceforge.net/projects/staden/files/io_lib/1.14.8/io_lib-1.14.8.tar.gz/download"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('1.14.8', sha256='3bd560309fd6d70b14bbb8230e1baf8706b804eb6201220bb6c3d6db72003d1b')
|
2017-03-29 10:33:34 +08:00
|
|
|
|
|
|
|
depends_on('zlib')
|