mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add texlive-vlna-bin.
* gnu/packages/tex.scm (texlive-vlna-bin): New variable. (texlive-vlna)[propagated-inputs]: Add TEXLIVE-VLNA-BIN. Change-Id: I98c4345f732488f43491a31c5faea54b231d3846
This commit is contained in:
parent
9ccd4f8dd4
commit
f16db7fd1b
1 changed files with 31 additions and 24 deletions
|
@ -32646,7 +32646,28 @@ (define-public texlive-verse
|
|||
tale} from @emph{Alice in Wonderland}.")
|
||||
(license license:lppl)))
|
||||
|
||||
(define texlive-vlna-bin
|
||||
(define-public texlive-vlna
|
||||
(package
|
||||
(name "texlive-vlna")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/man/man1/vlna.1"
|
||||
"doc/man/man1/vlna.man1.pdf" "doc/vlna/")
|
||||
(base32
|
||||
"0nfb7mj6y9d4n89z59ppi96grfylwky97mxcv9rjflr5kpqlpga2")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(propagated-inputs (list texlive-vlna-bin))
|
||||
(home-page "https://ctan.org/pkg/vlna")
|
||||
(synopsis "Add @samp{~} after non-syllabic preposition, for Czech/Slovak")
|
||||
(description
|
||||
"This package provides a preprocessor for TeX source implementing the
|
||||
Czech/Slovak typographical rule forbidding a non-syllabic preposition alone at
|
||||
the end of a line.")
|
||||
(license license:knuth)))
|
||||
|
||||
(define-public texlive-vlna-bin
|
||||
(package
|
||||
(inherit texlive-bin)
|
||||
(name "texlive-vlna-bin")
|
||||
|
@ -32671,9 +32692,9 @@ (define texlive-vlna-bin
|
|||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments texlive-bin)
|
||||
((#:configure-flags flags)
|
||||
#~(cons* "--enable-vlna" (delete "--enable-web2c" #$flags)))
|
||||
((#:phases _)
|
||||
#~(modify-phases %standard-phases
|
||||
#~(cons "--enable-vlna" (delete "--enable-web2c" #$flags)))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
|
@ -32684,27 +32705,13 @@ (define texlive-vlna-bin
|
|||
(with-directory-excursion "utils/vlna"
|
||||
(invoke "make" "install"))))))))
|
||||
(native-inputs '())
|
||||
(inputs '())))
|
||||
|
||||
(define-public texlive-vlna
|
||||
(package
|
||||
(name "texlive-vlna")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/man/man1/vlna.1"
|
||||
"doc/man/man1/vlna.man1.pdf" "doc/vlna/")
|
||||
(base32
|
||||
"0nfb7mj6y9d4n89z59ppi96grfylwky97mxcv9rjflr5kpqlpga2")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(home-page "https://ctan.org/pkg/vlna")
|
||||
(synopsis "Add @samp{~} after non-syllabic preposition, for Czech/Slovak")
|
||||
(inputs '())
|
||||
(propagated-inputs '())
|
||||
(home-page (package-home-page texlive-vlna))
|
||||
(synopsis "Binary for @code{texlive-vlna}")
|
||||
(description
|
||||
"This package provides a preprocessor for TeX source implementing the
|
||||
Czech/Slovak typographical rule forbidding a non-syllabic preposition alone at
|
||||
the end of a line.")
|
||||
(license license:knuth)))
|
||||
"This package provides the binary for @code{texlive-vlna}.")
|
||||
(license (package-license texlive-vlna))))
|
||||
|
||||
(define-public texlive-vntex
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue