guix-commits
[Top][All Lists]
Advanced

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

15/163: gnu: Add texlive-bibcop.


From: guix-commits
Subject: 15/163: gnu: Add texlive-bibcop.
Date: Sat, 19 Aug 2023 14:39:26 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit 991fb27cf1ec5e73c8f507ff1e92ca7f6575611e
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Thu Aug 17 19:40:13 2023 +0200

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 4e4e296415..8b5225f64e 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3285,6 +3285,34 @@ The lists are created by @command{bibsort}.  This 
program creates the
 bibliography without using MakeIndex or BibTeX.")
     (license license:gpl3+)))
 
+(define-public texlive-bibcop
+  (package
+    (name "texlive-bibcop")
+    (version (number->string %texlive-revision))
+    (source (texlive-origin
+             name version
+             (list "doc/bibtex/bibcop/"
+                   "doc/man/man1/bibcop.1"
+                   "doc/man/man1/bibcop.man1.pdf"
+                   "scripts/bibcop/"
+                   "source/bibtex/bibcop/"
+                   "tex/latex/bibcop/")
+             (base32
+              "0w8n51ksff3b4nfx0ggnh00jhsdh1zg25hijxmpsq0z0wgazai9b")))
+    (outputs '("out" "doc"))
+    (build-system texlive-build-system)
+    (arguments (list #:link-scripts #~(list "bibcop.pl")))
+    (inputs (list perl))
+    (propagated-inputs (list texlive-iexec texlive-pgfopts))
+    (home-page "https://ctan.org/pkg/bibcop";)
+    (synopsis "Style checker for .bib files")
+    (description
+     "This LaTeX package checks the quality of your @file{.bib} file and emits
+warning messages if any issues are found.  For this, the TeX processor must be
+run with the @samp{--shell-escape} option.  @command{bibcop} can also be used
+as a standalone command line tool.")
+    (license license:expat)))
+
 (define-public texlive-bibleref
   (package
     (name "texlive-bibleref")



reply via email to

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