[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/17: gnu: Add orcania.
From: |
guix-commits |
Subject: |
12/17: gnu: Add orcania. |
Date: |
Sat, 24 Jun 2023 11:09:00 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 73e7844c9c58e5d7c82d3334abdfceec5831bfe1
Author: Antero Mejr <antero@mailbox.org>
AuthorDate: Wed May 31 19:27:02 2023 +0000
gnu: Add orcania.
* gnu/packages/web.scm (orcania): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/web.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index f5b6c8cd2f..1df2d945a7 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -8795,6 +8795,43 @@ snapshots of the URLs you feed it in several formats.")
(home-page "https://archivebox.io/")
(license license:expat)))
+(define-public orcania
+ (package
+ (name "orcania")
+ (version "2.3.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/babelouest/orcania")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0dhczbhwvf3f9mj38qm46j10rpr77yz1np68mabfw8zcfwhr0pn4"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:configure-flags #~(list "-DBUILD_ORCANIA_TESTING=ON"
+ "-DBUILD_ORCANIA_DOCUMENTATION=ON")
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'build 'build-doc
+ (lambda _
+ (invoke "make" "doc")))
+ (add-after 'install 'install-doc
+ (lambda _
+ (let ((doc (string-append #$output
+ "/share/doc/orcania")))
+ (mkdir-p doc)
+ (copy-recursively "../source/doc/html" doc)))))))
+ (native-inputs (list check doxygen subunit))
+ (home-page "https://babelouest.github.io/orcania/")
+ (synopsis "Collection of C functions for Ulfius")
+ (description
+ "Orcania is a library with functions that can be shared among C programs.
+It is intended to provide low-level functionalities for the Ulfius and Yder
+libraries.")
+ (license license:lgpl2.1)))
+
+
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar
- 03/17: doc: Turn "Creating a Channel" into a step-by-step guide., (continued)
- 03/17: doc: Turn "Creating a Channel" into a step-by-step guide., guix-commits, 2023/06/24
- 01/17: services: dicod: Use one inetd endpoint per interface., guix-commits, 2023/06/24
- 02/17: linux-container: Pass '--disable-chroot' to 'guix-daemon'., guix-commits, 2023/06/24
- 06/17: gnu: ruby-mini-portile-2: Update to 2.8.2., guix-commits, 2023/06/24
- 04/17: gnu: fenics: Make sure 'jit.py' can find 'dolfin.pc'., guix-commits, 2023/06/24
- 05/17: gnu: fenics-dolfin, fenics: Remove input labels., guix-commits, 2023/06/24
- 07/17: gnu: ruby-nokogiri: Update to 1.15.2., guix-commits, 2023/06/24
- 11/17: gnu: Add subunit., guix-commits, 2023/06/24
- 13/17: gnu: Add yder., guix-commits, 2023/06/24
- 09/17: gnu: Add libansilove., guix-commits, 2023/06/24
- 12/17: gnu: Add orcania.,
guix-commits <=
- 08/17: gnu: dyninst: Fix runtime error with new glibc., guix-commits, 2023/06/24
- 10/17: gnu: Add ansilove., guix-commits, 2023/06/24
- 14/17: gnu: Add ulfius., guix-commits, 2023/06/24
- 16/17: gnu: Add le-biniou., guix-commits, 2023/06/24
- 17/17: gnu: blesh: Update to 0.4.0-devel3., guix-commits, 2023/06/24
- 15/17: gnu: Add le-biniou-data., guix-commits, 2023/06/24