diff options
author | Felix Niederwanger <felix@feldspaten.org> | 2019-05-06 20:58:29 +0200 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-05-07 03:58:29 +0900 |
commit | 6de3e1c7b6a63d7798f3269db3818b57ab045bd8 (patch) | |
tree | 963abf8f2b6204857060e12157cbaf20b12104cb /var | |
parent | 96a95bb5bf92568da498f19e24a9bcd4e775769c (diff) | |
download | spack-6de3e1c7b6a63d7798f3269db3818b57ab045bd8.tar.gz spack-6de3e1c7b6a63d7798f3269db3818b57ab045bd8.tar.bz2 spack-6de3e1c7b6a63d7798f3269db3818b57ab045bd8.tar.xz spack-6de3e1c7b6a63d7798f3269db3818b57ab045bd8.zip |
New package: CCfits (#11262)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/ccfits/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ccfits/package.py b/var/spack/repos/builtin/packages/ccfits/package.py new file mode 100644 index 0000000000..1e90dac5df --- /dev/null +++ b/var/spack/repos/builtin/packages/ccfits/package.py @@ -0,0 +1,22 @@ +# 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) + +from spack import * + + +class Ccfits(AutotoolsPackage): + """CCfits is an object oriented interface to the cfitsio library. + It is designed to make the capabilities of cfitsio available to programmers + working in C++. It is written in ANSI C++ and implemented using the C++ + Standard Library with namespaces, exception handling, and member template + functions. """ + + homepage = "https://heasarc.gsfc.nasa.gov/fitsio/CCfits/" + url = "https://heasarc.gsfc.nasa.gov/fitsio/CCfits/CCfits-2.5.tar.gz" + + version('2.5', sha256='938ecd25239e65f519b8d2b50702416edc723de5f0a5387cceea8c4004a44740') + version('2.4', sha256='ba6c5012b260adf7633f92581279ea582e331343d8c973981aa7de07242bd7f8') + + depends_on('cfitsio') |