[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#74723] [PATCH 12/19] gnu: Add libbinio.
From: |
Sughosha |
Subject: |
[bug#74723] [PATCH 12/19] gnu: Add libbinio. |
Date: |
Sat, 7 Dec 2024 17:50:26 +0530 |
* gnu/packages/cpp.scm (libbinio): New variable.
Change-Id: I3f202f6da8617162654a8b4523b680a497909ba3
---
gnu/packages/cpp.scm | 37 ++++++++++++++++++++++++++++++++++++-
1 file changed, 36 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index eacc6e46ab..7266efeb2a 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -33,7 +33,7 @@
;;; Copyright ?? 2022-2024 Zheng Junjie <873216071@qq.com>
;;; Copyright ?? 2022, 2023, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright ?? 2022 Antero Mejr <antero@mailbox.org>
-;;; Copyright ?? 2023 Sughosha <Sughosha@proton.me>
+;;; Copyright ?? 2023, 2024 Sughosha <Sughosha@proton.me>
;;; Copyright ?? 2023, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright ?? 2023 Liliana Marie Prikler <liliana.prikler@gmail.com>
;;; Copyright ?? 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
@@ -111,6 +111,7 @@ (define-module (gnu packages cpp)
#:use-module (gnu packages popt)
#:use-module (gnu packages pretty-print)
#:use-module (gnu packages pulseaudio)
+ #:use-module (gnu packages texinfo)
#:use-module (gnu packages tls)
#:use-module (gnu packages web)
#:use-module (gnu packages xml)
@@ -1834,6 +1835,40 @@ (define-public aws-sdk-cpp
(home-page "https://github.com/aws/aws-sdk-cpp")
(license license:asl2.0)))
+(define-public libbinio
+ (package
+ (name "libbinio")
+ (version "1.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/adplug/libbinio")
+ (commit (string-append "libbinio-" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "010q3dgn8zdv5hnvbhhr0jzgzvhrmil395hx585yy7gsi8dsyr35"))
+ (modules '((guix build utils)))
+ (snippet
+ `(substitute* "doc/libbinio.texi"
+ ;; Do not include version.texi which does not exist yet.
+ ((".*version\\.texi.*") "")
+ ;; Replace VERSION with the package version.
+ (("@value\\{VERSION\\}") ,version)
+ ;; Replace UPDATED with the date of the current commit.
+ (("@value\\{UPDATED\\}") "7 August 2019")))))
+ (native-inputs
+ (list autoconf automake libtool texinfo))
+ (build-system gnu-build-system)
+ (home-page "http://adplug.github.io/libbinio/")
+ (synopsis "Binary I/O stream class library")
+ (description
+ "This binary I/O stream class library presents a platform-independent way
+to access binary data streams in C++. The library is hardware independent in
+the form that it transparently converts between the different forms of
+machine-internal binary data representation.")
+ (license license:lgpl2.1+)))
+
(define-public libexpected
(package
(name "libexpected")
--
2.46.0
- [bug#74723] [PATCH 05/19] gnu: lmms: Enable MP3 file format support for project export., (continued)
- [bug#74723] [PATCH 05/19] gnu: lmms: Enable MP3 file format support for project export., Sughosha, 2024/12/07
- [bug#74723] [PATCH 07/19] gnu: Add stk., Sughosha, 2024/12/07
- [bug#74723] [PATCH 11/19] gnu: Add ringbuffer., Sughosha, 2024/12/07
- [bug#74723] [PATCH 09/19] gnu: lmms: Enable Wayland support., Sughosha, 2024/12/07
- [bug#74723] [PATCH 10/19] gnu: carla: Enable Wayland support., Sughosha, 2024/12/07
- [bug#74723] [PATCH 08/19] gnu: lmms: Enable Stk Mallets and GIG Player., Sughosha, 2024/12/07
- [bug#74723] [PATCH 19/19] gnu: carla-2.6: Update to 2.6.0-1.17000e7., Sughosha, 2024/12/07
- [bug#74723] [PATCH 17/19] gnu: lmms: Replace carla with carla-2.4., Sughosha, 2024/12/07
- [bug#74723] [PATCH 18/19] gnu: Add lmms-1.3., Sughosha, 2024/12/07
- [bug#74723] [PATCH 13/19] gnu: Add adplug., Sughosha, 2024/12/07
- [bug#74723] [PATCH 12/19] gnu: Add libbinio.,
Sughosha <=
- [bug#74723] [PATCH 14/19] gnu: Add exprtk., Sughosha, 2024/12/07
- [bug#74723] [PATCH 15/19] gnu: carla: Update to 2.5.9., Sughosha, 2024/12/07
- [bug#74723] [PATCH 16/19] gnu: Add carla-2.4., Sughosha, 2024/12/07