diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-20 22:46:00 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-31 21:04:08 +0100 |
commit | 41fc92172272fc8ed145cb2e065b7268fa9a41a2 (patch) | |
tree | 5179ba211c180c90855e91c24e0297cd99af5e71 | |
parent | 7780f5a56cae1dcd8a10cc777de7a0facaddef7d (diff) |
gnu: ccfits: Update to 2.7.
* gnu/packages/astronomy.scm (ccfits): Update to 2.7.
[arguments] <configure-flags>: Build shared library and tests.
[inputs]: Add zlib.
[description]: Adjust fill column indentation.
Change-Id: If573eeb889f0c2feed92843978d6cabda22e627b
-rw-r--r-- | gnu/packages/astronomy.scm | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index ceeae2ead1..3081d5d33b 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -499,24 +499,29 @@ made to get a better separation of core libraries and applications. (define-public ccfits (package (name "ccfits") - (version "2.6") + (version "2.7") (source (origin (method url-fetch) (uri (string-append - "https://heasarc.gsfc.nasa.gov/docs/software/fitsio/ccfits/" + "https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/ccfits/" "CCfits-" version ".tar.gz")) (sha256 - (base32 "04l6na8vr5xadz3rbx62as79x1ch4994vbb625kx0dz5czdkkd1b")))) + (base32 "06mhvvdsaqvk3cc309gv6zd4lcxm5q5aialaq0n77gzczv94cdgn")))) (build-system cmake-build-system) - (inputs (list cfitsio)) + (arguments + (list + #:configure-flags + #~(list "-DBUILD_SHARED_LIBS=ON" + "-DTESTS=ON"))) + (inputs (list cfitsio zlib)) (home-page "https://heasarc.gsfc.nasa.gov/docs/software/fitsio/ccfits/") (synopsis "C++ interface to the CFITSIO") (description "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.") +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.") (license (license:non-copyleft "file://License.txt" "See License.txt in the distribution.")))) |