gnu: Add texlive-metapost.

* gnu/packages/tex.scm (texlive-metapost): New variable.
This commit is contained in:
Ricardo Wurmus 2017-07-09 11:57:23 +02:00
parent 406af0d663
commit 44436def9b
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2356,6 +2356,39 @@ (define-public texlive-latex-lh
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")