mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add texlive-texware-bin.
* gnu/packages/tex.scm (texlive-texware-bin): New variable. (texlive-texware)[propagated-inputs]: Add TEXLIVE-TEXWARE-BIN. Change-Id: I8c3393f3c7e54477f8ffc350a122e20a0a074c97
This commit is contained in:
parent
f4def03d1b
commit
f4551f69e5
1 changed files with 25 additions and 0 deletions
|
@ -43460,6 +43460,7 @@ (define-public texlive-texware
|
||||||
"122r0aq02vwx6irsnapnfbvhgy5d09x90rc8zc7a0bi7b25bxnd1")))
|
"122r0aq02vwx6irsnapnfbvhgy5d09x90rc8zc7a0bi7b25bxnd1")))
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
|
(propagated-inputs (list texlive-texware-bin))
|
||||||
(home-page "https://ctan.org/pkg/texware")
|
(home-page "https://ctan.org/pkg/texware")
|
||||||
(synopsis "Utility programs for use with TeX")
|
(synopsis "Utility programs for use with TeX")
|
||||||
(description
|
(description
|
||||||
|
@ -43471,6 +43472,30 @@ (define-public texlive-texware
|
||||||
and vice versa.")
|
and vice versa.")
|
||||||
(license license:public-domain)))
|
(license license:public-domain)))
|
||||||
|
|
||||||
|
(define-public texlive-texware-bin
|
||||||
|
(package
|
||||||
|
(inherit texlive-bin)
|
||||||
|
(name "texlive-texware-bin")
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments texlive-bin)
|
||||||
|
((#:configure-flags flags)
|
||||||
|
#~(delete "--enable-web2c" #$flags))
|
||||||
|
((#:phases phases)
|
||||||
|
#~(modify-phases #$phases
|
||||||
|
(replace 'install
|
||||||
|
(lambda _
|
||||||
|
(with-directory-excursion "texk/web2c"
|
||||||
|
(let ((bin (string-append #$output "/bin"))
|
||||||
|
(files '("dvitype" "pooltype")))
|
||||||
|
(for-each (lambda (f) (invoke "make" f)) files)
|
||||||
|
(for-each (lambda (f) (install-file f bin)) files)))))))))
|
||||||
|
(native-inputs (list pkg-config))
|
||||||
|
(home-page (package-home-page texlive-texware))
|
||||||
|
(synopsis "Binaries for @code{texlive-texware}")
|
||||||
|
(description
|
||||||
|
"This package provides the binaries for @code{texlive-texware}.")
|
||||||
|
(license (package-license texlive-texware))))
|
||||||
|
|
||||||
(define-public texlive-ticollege
|
(define-public texlive-ticollege
|
||||||
(package
|
(package
|
||||||
(name "texlive-ticollege")
|
(name "texlive-ticollege")
|
||||||
|
|
Loading…
Reference in a new issue