
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
22 lines
706 B
Python
22 lines
706 B
Python
# Copyright 2013-2018 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 Cistem(AutotoolsPackage):
|
|
"""cisTEM is user-friendly software to process cryo-EM images of
|
|
macromolecular complexes and obtain high-resolution 3D reconstructions
|
|
from them."""
|
|
|
|
homepage = "https://cistem.org/"
|
|
url = "https://cistem.org/system/tdf/upload3/cistem-1.0.0-beta-source-code.tar.gz?file=1&type=cistem_details&id=37&force=0"
|
|
|
|
version('1.0.0-beta', '479f395b30ad630df3cbba9c56eb29c2')
|
|
|
|
depends_on('wx@3.0.2')
|
|
depends_on('fftw')
|