
- [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
20 lines
694 B
Python
20 lines
694 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 LibmmtfCpp(CMakePackage):
|
|
"""The macromolecular transmission format (MMTF) is a binary encoding of
|
|
biological structures. This repository holds the C++-03 compatible API,
|
|
encoding and decoding libraries."""
|
|
|
|
homepage = "https://github.com/rcsb/mmtf-cpp"
|
|
url = "https://github.com/rcsb/mmtf-cpp/archive/v1.0.0.tar.gz"
|
|
|
|
version('1.0.0', sha256='881f69c4bb56605fa63fd5ca50842facc4947f686cbf678ad04930674d714f40')
|
|
|
|
depends_on('msgpack-c')
|