me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-logpap.

* gnu/packages/tex.scm (texlive-logpap): New variable.
master
Nicolas Goaziou 2023-08-29 15:54:28 +02:00
parent 379d8c3787
commit 7b4c2e5637
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 30 additions and 0 deletions

View File

@ -87465,6 +87465,36 @@ a language name as an option; accepted language options are @code{american},
@code{british}, @code{german} and @code{polish}.")
(license license:gpl3)))
(define-public texlive-logpap
(package
(name "texlive-logpap")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/logpap/" "source/latex/logpap/"
"tex/latex/logpap/")
(base32
"0jg7jp40h80bmdjwhm9pz2ipz3r4r5rz1ksnac5ssybxp6psnhkq")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
;; Do not stop build to ask about building part of the
;; documentation.
(add-after 'unpack 'non-interactive-build
(lambda _
(substitute* "source/latex/logpap/logpap.ins"
(("\\\\generateexampletrue") "\\generateexamplefalse")))))))
(home-page "https://ctan.org/pkg/logpap")
(synopsis "Generate logarithmic graph paper with LaTeX")
(description
"The logpap package provides four macros for drawing logarithmic-logarithmic,
logarithmic-linear, linear-logarithmic and (because it was easy to implement)
linear-linear graph paper with LaTeX.")
(license license:lppl)))
;;;
;;; 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