[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
40/47: gnu: Add texlive-fontname.
From: |
Ricardo Wurmus |
Subject: |
40/47: gnu: Add texlive-fontname. |
Date: |
Mon, 17 Jul 2017 08:04:13 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit dea67d8afe17be2dad41e4167c12f85df0d9b4f3
Author: Ricardo Wurmus <address@hidden>
Date: Sat Jul 15 10:39:38 2017 +0200
gnu: Add texlive-fontname.
* gnu/packages/tex.scm (texlive-fontname): 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 0d44a89..b8f972a 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -429,6 +429,40 @@ converters, will completely supplant the older patterns.")
build fonts using the Metafont system.")
(license license:knuth)))
+(define-public texlive-fontname
+ (package
+ (name "texlive-fontname")
+ (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/"
+ "/fonts/map/fontname"))
+ (revision %texlive-revision)))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0cssbzcx15221dynp5sii72qh4l18mwkr14n8w1xb19j8pbaqasz"))))
+ (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/fonts/map/fontname")))
+ (mkdir-p target)
+ (copy-recursively (assoc-ref %build-inputs "source") target)
+ #t))))
+ (home-page "https://www.ctan.org/pkg/fontname")
+ (synopsis "Scheme for naming fonts in TeX")
+ (description "This is Fontname, a naming scheme for (the base part of)
+external TeX font filenames. This makes at most eight-character names
+from (almost) arbitrarily complex font names, thus helping portability of TeX
+documents.")
+ (license license:public-domain)))
+
(define-public texlive-fonts-cm
(package
(name "texlive-fonts-cm")
- 13/47: gnu: Add texlive-latex-draftwatermark., (continued)
- 13/47: gnu: Add texlive-latex-draftwatermark., Ricardo Wurmus, 2017/07/17
- 32/47: gnu: Add texlive-latex-bigfoot., Ricardo Wurmus, 2017/07/17
- 43/47: gnu: Add texlive-latex-enumitem., Ricardo Wurmus, 2017/07/17
- 22/47: gnu: Add texlive-latex-etoolbox., Ricardo Wurmus, 2017/07/17
- 29/47: gnu: Add texlive-latex-varwidth., Ricardo Wurmus, 2017/07/17
- 17/47: gnu: Add texlive-latex-cmap., Ricardo Wurmus, 2017/07/17
- 35/47: gnu: Add texlive-latex-ifplatform., Ricardo Wurmus, 2017/07/17
- 45/47: gnu: Add texlive-latex-type1cm., Ricardo Wurmus, 2017/07/17
- 21/47: gnu: Add texlive-latex-capt-of., Ricardo Wurmus, 2017/07/17
- 37/47: gnu: Add texlive-latex-trimspaces., Ricardo Wurmus, 2017/07/17
- 40/47: gnu: Add texlive-fontname.,
Ricardo Wurmus <=
- 39/47: gnu: python-ipython: Use texlive-union., Ricardo Wurmus, 2017/07/17
- 42/47: gnu: texlive-dvips: Install font maps., Ricardo Wurmus, 2017/07/17
- 33/47: gnu: Add texlive-latex-environ., Ricardo Wurmus, 2017/07/17
- 47/47: gnu: Add sooperlooper., Ricardo Wurmus, 2017/07/17
- 44/47: gnu: Add texlive-fonts-txfonts., Ricardo Wurmus, 2017/07/17
- 24/47: gnu: Add texlive-latex-mdwtools., Ricardo Wurmus, 2017/07/17
- 30/47: gnu: Add texlive-latex-wrapfig., Ricardo Wurmus, 2017/07/17
- 36/47: gnu: Add texlive-latex-psfrag., Ricardo Wurmus, 2017/07/17
- 34/47: gnu: Add texlive-latex-filemod., Ricardo Wurmus, 2017/07/17
- 41/47: gnu: texlive-union: Add texlive-fontname to defaults., Ricardo Wurmus, 2017/07/17