[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27296: [PATCH 06/35] gnu: Add texlive-generic-tex-ini-files.
From: |
Ricardo Wurmus |
Subject: |
bug#27296: [PATCH 06/35] gnu: Add texlive-generic-tex-ini-files. |
Date: |
Fri, 9 Jun 2017 12:45:30 +0200 |
* gnu/packages/tex.scm (texlive-generic-tex-ini-files): 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 7e4d29be5..b798590fe 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -291,6 +291,40 @@ bundle.")
;; under LPPL.
(license (list license:expat license:lppl))))
+(define-public texlive-generic-tex-ini-files
+ (package
+ (name "texlive-generic-tex-ini-files")
+ (version (number->string %texlive-revision))
+ (source (origin
+ (method svn-fetch)
+ (uri (svn-reference
+ (url (string-append "svn://www.tug.org/texlive/tags/"
+ %texlive-tag "/Master/texmf-dist/"
+ "/tex/generic/tex-ini-files"))
+ (revision %texlive-revision)))
+ (sha256
+ (base32
+ "1wh42n1lmzcvi3g6mm31nm3yd5ha5bl260xqc444jg1m9fdp3wz5"))))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let ((target (string-append (assoc-ref %outputs "out")
+
"/share/texmf-dist/tex/generic/tex-ini-files")))
+ (mkdir-p target)
+ (copy-recursively (assoc-ref %build-inputs "source") target)
+ #t))))
+ (home-page "http://ctan.org/pkg/tex-ini-files")
+ (synopsis "Files for creating TeX formats")
+ (description "This bundle provides a collection of model \".ini\" files
+for creating TeX formats. These files are commonly used to introduced
+distribution-dependent variations in formats. They are also used to
+allow existing format source files to be used with newer engines, for example
+to adapt the plain e-TeX source file to work with XeTeX and LuaTeX.")
+ (license license:public-domain)))
+
(define texlive-texmf
(package
(name "texlive-texmf")
--
2.12.2
- bug#27296: Modular Texlive, Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 01/35] guix: Add download-svn-to-store., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 03/35] gnu: Add texlive-dvips., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 04/35] gnu: Add texlive-generic-unicode-data., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 05/35] gnu: Add texlive-generic-dehyph-exptl., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 06/35] gnu: Add texlive-generic-tex-ini-files.,
Ricardo Wurmus <=
- bug#27296: [PATCH 08/35] gnu: Add texlive-metafont-base., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 09/35] gnu: Add texlive-fonts-cm., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 07/35] gnu: Add texlive-generic-hyph-utf8., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 11/35] gnu: Add texlive-fonts-latex., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 02/35] guix: Add common TeX and LaTeX licenses., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 15/35] gnu: Add texlive-latex-filecontents., Ricardo Wurmus, 2017/06/09