mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add ocaml-camlpdf.
* gnu/packages/ocaml.scm (ocaml-camlpdf): New variable. Change-Id: I097280bdd16eaf810f83fbca13f615a03e4d6702 Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
parent
a0b0a524aa
commit
bc2a8ed4fc
1 changed files with 40 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
|||
;;; Copyright © 2023, 2024 Foundation Devices, Inc. <hello@foundation.xyz>
|
||||
;;; Copyright © 2023 Arnaud DABY-SEESARAM <ds-ac@nanein.fr>
|
||||
;;; Copyright © 2024 Sören Tempel <soeren@soeren-tempel.net>
|
||||
;;; Copyright © 2025 Jussi Timperi <jussi.timperi@iki.fi>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -659,6 +660,45 @@ for day to day programming.")
|
|||
;; With static-linking exception
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public ocaml-camlpdf
|
||||
(package
|
||||
(name "ocaml-camlpdf")
|
||||
(version "2.8.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/johnwhitington/camlpdf")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1cbqgwh62cqnsbax4k4iv9gb63k1v545izmbffxj8gj1q6sm0k34"))))
|
||||
(build-system ocaml-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ;no tests
|
||||
#:make-flags
|
||||
#~(list (string-append "CC=" #$(cc-for-target)))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(add-after 'unpack 'patch-makefile-shell
|
||||
(lambda _
|
||||
(patch-makefile-SHELL "OCamlMakefile")))
|
||||
(add-after 'install 'install-doc
|
||||
(lambda _
|
||||
(let ((doc (string-append #$output "/share/doc/"
|
||||
#$name "-" #$version)))
|
||||
(copy-recursively "doc/camlpdf/html"
|
||||
(string-append doc "/html"))))))))
|
||||
(home-page "https://github.com/johnwhitington/camlpdf")
|
||||
(synopsis "OCaml library for PDF file manipulation")
|
||||
(description
|
||||
"CamlPDF is an OCaml library that provides functionality for reading,
|
||||
writing, and modifying PDF files. It serves as the foundation for the
|
||||
@command{cpdf} command-line tool and various API bindings.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public ocaml-cudf
|
||||
(package
|
||||
(name "ocaml-cudf")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue