mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add texlive-velthuis-bin.
* gnu/packages/tex.scm (texlive-velthuis-bin): New variable. (texlive-velthuis)[propagated-inputs]: Add TEXLIVE-VELTHUIS-BIN. Change-Id: Ib0f69bc3edb44b45164858ae48bd883dbddaee1d
This commit is contained in:
parent
e2515315a2
commit
0fea04c383
1 changed files with 87 additions and 1 deletions
|
@ -32498,7 +32498,7 @@ (define-public texlive-velthuis
|
|||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(native-inputs (list texlive-metafont))
|
||||
(propagated-inputs (list texlive-xetex-devanagari))
|
||||
(propagated-inputs (list texlive-velthuis-bin texlive-xetex-devanagari))
|
||||
(home-page "https://ctan.org/pkg/devanagari")
|
||||
(synopsis "Typeset Devanagari")
|
||||
(description
|
||||
|
@ -32509,6 +32509,52 @@ (define-public texlive-velthuis
|
|||
fonts, in both Metafont and Type 1 formats.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public texlive-velthuis-bin
|
||||
(package
|
||||
(inherit texlive-bin)
|
||||
(name "texlive-velthuis-bin")
|
||||
(source
|
||||
(origin
|
||||
(inherit texlive-source)
|
||||
(modules '((guix build utils)
|
||||
(ice-9 ftw)))
|
||||
(snippet
|
||||
#~(let ((delete-other-directories
|
||||
(lambda (root dirs)
|
||||
(with-directory-excursion root
|
||||
(for-each
|
||||
delete-file-recursively
|
||||
(scandir "."
|
||||
(lambda (file)
|
||||
(and (not (member file (append '("." "..") dirs)))
|
||||
(eq? 'directory (stat:type (stat file)))))))))))
|
||||
(delete-other-directories "libs" '())
|
||||
(delete-other-directories "utils" '("devnag"))
|
||||
(delete-other-directories "texk" '())))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments texlive-bin)
|
||||
((#:configure-flags flags)
|
||||
#~(cons "--enable-devnag" (delete "--enable-web2c" #$flags)))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(with-directory-excursion "utils/devnag"
|
||||
(invoke "make" "check")))))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(with-directory-excursion "utils/devnag"
|
||||
(invoke "make" "install"))))))))
|
||||
(native-inputs '())
|
||||
(inputs '())
|
||||
(propagated-inputs '())
|
||||
(home-page (package-home-page texlive-velthuis))
|
||||
(synopsis "Binary for @code{texlive-velthuis}")
|
||||
(description
|
||||
"This package provide the binary for @code{texlive-velthuis}.")
|
||||
(license (package-license texlive-velthuis))))
|
||||
|
||||
(define-public texlive-venn
|
||||
(package
|
||||
(name "texlive-venn")
|
||||
|
@ -32600,6 +32646,46 @@ (define-public texlive-verse
|
|||
tale} from @emph{Alice in Wonderland}.")
|
||||
(license license:lppl)))
|
||||
|
||||
(define texlive-vlna-bin
|
||||
(package
|
||||
(inherit texlive-bin)
|
||||
(name "texlive-vlna-bin")
|
||||
(source
|
||||
(origin
|
||||
(inherit texlive-source)
|
||||
(modules '((guix build utils)
|
||||
(ice-9 ftw)))
|
||||
(snippet
|
||||
#~(let ((delete-other-directories
|
||||
(lambda (root dirs)
|
||||
(with-directory-excursion root
|
||||
(for-each
|
||||
delete-file-recursively
|
||||
(scandir "."
|
||||
(lambda (file)
|
||||
(and (not (member file (append '("." "..") dirs)))
|
||||
(eq? 'directory (stat:type (stat file)))))))))))
|
||||
(delete-other-directories "libs" '())
|
||||
(delete-other-directories "utils" '("vlna"))
|
||||
(delete-other-directories "texk" '())))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments texlive-bin)
|
||||
((#:configure-flags flags)
|
||||
#~(cons* "--enable-vlna" (delete "--enable-web2c" #$flags)))
|
||||
((#:phases _)
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(with-directory-excursion "utils/vlna"
|
||||
(invoke "make" "check")))))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(with-directory-excursion "utils/vlna"
|
||||
(invoke "make" "install"))))))))
|
||||
(native-inputs '())
|
||||
(inputs '())))
|
||||
|
||||
(define-public texlive-vlna
|
||||
(package
|
||||
(name "texlive-vlna")
|
||||
|
|
Loading…
Reference in a new issue