[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
38/44: gnu: Add texlive-metapost.
From: |
Ricardo Wurmus |
Subject: |
38/44: gnu: Add texlive-metapost. |
Date: |
Sun, 9 Jul 2017 11:09:14 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 44436def9b169db90a188a20708a0a3a171f2a06
Author: Ricardo Wurmus <address@hidden>
Date: Sun Jul 9 11:57:23 2017 +0200
gnu: Add texlive-metapost.
* gnu/packages/tex.scm (texlive-metapost): New variable.
---
gnu/packages/tex.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index afbfe6b..19422a3 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -2356,6 +2356,39 @@ CM-Super family of fonts. The package also offers its
own LaTeX support for
OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts.")
(license license:lppl)))
+(define-public texlive-metapost
+ (package
+ (name "texlive-metapost")
+ (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/"
+ "/metapost"))
+ (revision %texlive-revision)))
+ (sha256
+ (base32
+ "03nvjddffiz796wll6axzmgfvynyciy2mqamv20qx252w71vwkwd"))))
+ (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/metapost")))
+ (mkdir-p target)
+ (copy-recursively (assoc-ref %build-inputs "source") target)
+ #t))))
+ (home-page "http://www.ctan.org/pkg/metapost")
+ (synopsis "Create scalable illustrations")
+ (description
+ "MetaPost uses a language based on that of Metafont to produce precise
+technical illustrations. Its output is scalable PostScript or SVG, rather
+than the bitmaps Metafont creates.")
+ (license license:lppl)))
+
(define-public texlive-latex-wasysym
(package
(name "texlive-latex-wasysym")
- 27/44: gnu: Add texlive-latex-overpic., (continued)
- 27/44: gnu: Add texlive-latex-overpic., Ricardo Wurmus, 2017/07/09
- 33/44: gnu: Add texlive-generic-epsf., Ricardo Wurmus, 2017/07/09
- 40/44: doc: Recommend rebuilding the font cache., Ricardo Wurmus, 2017/07/09
- 14/44: gnu: Add texlive-latex-amsfonts., Ricardo Wurmus, 2017/07/09
- 35/44: gnu: Add texlive-latex-eso-pic., Ricardo Wurmus, 2017/07/09
- 34/44: gnu: Add texlive-fonts-ec., Ricardo Wurmus, 2017/07/09
- 44/44: gnu: gtk-doc: Fix dblatex problem., Ricardo Wurmus, 2017/07/09
- 30/44: gnu: Add texlive-latex-subfigure., Ricardo Wurmus, 2017/07/09
- 32/44: gnu: Add texlive-latex-wasysym., Ricardo Wurmus, 2017/07/09
- 39/44: gnu: lilypond: Update to 2.19.63., Ricardo Wurmus, 2017/07/09
- 38/44: gnu: Add texlive-metapost.,
Ricardo Wurmus <=
- 42/44: gnu: Add texlive-fonts-rsfs., Ricardo Wurmus, 2017/07/09
- 37/44: gnu: Add texlive-latex-lh., Ricardo Wurmus, 2017/07/09
- 16/44: gnu: Add texlive-latex-appendix., Ricardo Wurmus, 2017/07/09
- 20/44: gnu: Add texlive-latex-fancyhdr., Ricardo Wurmus, 2017/07/09
- 22/44: gnu: Add texlive-latex-float., Ricardo Wurmus, 2017/07/09
- 24/44: gnu: Add texlive-latex-listings., Ricardo Wurmus, 2017/07/09
- 26/44: gnu: Add texlive-latex-multirow., Ricardo Wurmus, 2017/07/09
- 43/44: gnu: dblatex: Use texlive-union., Ricardo Wurmus, 2017/07/09