guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

120/296: gnu: Add texlive-kluwer.


From: guix-commits
Subject: 120/296: gnu: Add texlive-kluwer.
Date: Thu, 24 Aug 2023 05:20:25 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit b90f9a8988c1156430aa2f40dfcfa70174c8e55d
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Aug 22 16:10:14 2023 +0200

    gnu: Add texlive-kluwer.
    
    * gnu/packages/tex.scm (texlive-kluwer): New variable.
---
 gnu/packages/tex.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 59922cc3d4..0c1349a2ff 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -18266,6 +18266,40 @@ The font is distributed in Metafont format, and covers 
the numbers and
 upper-case letters.")
     (license license:public-domain)))
 
+(define-public texlive-kluwer
+  (package
+    (name "texlive-kluwer")
+    (version (number->string %texlive-revision))
+    (source (texlive-origin
+             name version
+             (list "bibtex/bst/kluwer/" "doc/latex/kluwer/"
+                   "source/latex/kluwer/" "tex/latex/kluwer/")
+             (base32
+              "14y95srzggd8kaiyjq0sz5amvmppl3rilhj9fr0vcjsy2g1ms52z")))
+    (outputs '("out" "doc"))
+    (build-system texlive-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          ;; The "kluwer.ins" file only generates "kluwer.cls".  To that
+          ;; effect, it needs data from files located in
+          ;; "tex/latex/kluwer/".  Bring them to build directory.
+          (add-before 'build 'bring-data-files
+            (lambda _
+              (for-each (lambda (f) (install-file f "build/"))
+                        (find-files "tex/latex/kluwer/" "\\.(clo|sty)$")))))))
+    (home-page "https://ctan.org/pkg/kluwer";)
+    (synopsis "@emph{Kluwer} publication support")
+    (description
+     "This package provides a class file for @emph{Kluwer} journal
+submissions, and bibliography style for named references.  It also includes
+@file{klucite.sty}, which collapses bibliographic citations, and
+@file{klups.sty}, which attempts to select Times for text and MathTime for
+math instead of Computer Modern.  This package is most likely long obsolete,
+unfortunately.")
+    (license license:knuth)))
+
 (define-public texlive-kotex-oblivoir
   (package
     (name "texlive-kotex-oblivoir")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]