[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/13: gnu: Add libmseed.
From: |
guix-commits |
Subject: |
01/13: gnu: Add libmseed. |
Date: |
Sat, 6 Apr 2024 07:45:45 -0400 (EDT) |
monego pushed a commit to branch master
in repository guix.
commit 33d8c6904a58e46413b87cda063b91ddb48f8c57
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sun Feb 5 11:56:51 2023 -0300
gnu: Add libmseed.
* gnu/packages/geo.scm (libmseed): New variable.
Change-Id: I6feb414110c30da408069b36b46a421467d2ccad
---
gnu/packages/geo.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 460f810d3e..4884a3803b 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1911,6 +1911,34 @@ persisted.
")
(license license:expat)))
+(define-public libmseed
+ (package
+ (name "libmseed")
+ (version "3.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/EarthScope/libmseed")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "05sk2h19c7ja98s75b7hbn2cwnjc5l6dr59c23fgnaimmad2rfn7"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output))
+ #:phases #~(modify-phases %standard-phases
+ (delete 'configure))))
+ (home-page "https://earthscope.github.io/libmseed/")
+ (synopsis "Library for the miniSEED data format")
+ (description "The miniSEED library provides a framework for manipulation
+of SEED data records, a format for commonly used for seismological time
+series and related data. The library includes the functionality to read
+and write data records, in addition to reconstructing time series
+from multiple records.")
+ (license license:asl2.0)))
+
(define-public python-rtree
(package
(name "python-rtree")
- branch master updated (bfc614397b -> 12fd64c9f9), guix-commits, 2024/04/06
- 04/13: gnu: libheif: Enable tests., guix-commits, 2024/04/06
- 01/13: gnu: Add libmseed.,
guix-commits <=
- 03/13: gnu: libheif: Update to 1.17.6., guix-commits, 2024/04/06
- 05/13: gnu: openimageio: Update to 2.5.10.1., guix-commits, 2024/04/06
- 08/13: gnu: Add minizip-ng., guix-commits, 2024/04/06
- 10/13: gnu: opensubdiv: Update to 3.6.0., guix-commits, 2024/04/06
- 11/13: gnu: openvdb: Update to 11.0.0., guix-commits, 2024/04/06
- 02/13: gnu: xgboost: Update to 1.7.6., guix-commits, 2024/04/06
- 06/13: gnu: openshadinglanguage: Update to 1.13.8.0., guix-commits, 2024/04/06
- 07/13: gnu: Add pystring., guix-commits, 2024/04/06
- 13/13: gnu: blender: Unbundle dependencies., guix-commits, 2024/04/06
- 09/13: gnu: opencolorio: Update to 2.3.2., guix-commits, 2024/04/06