gnu: fontforge: Install 'showttf' tool.

* gnu/packages/fontutils.scm (fontforge)[arguments]: Add 'build-contrib'
phase.
This commit is contained in:
Eric Bavier 2016-04-05 22:52:58 -05:00
parent 5ab869f962
commit 5f031ed242

View file

@ -557,6 +557,14 @@ (define-public fontforge
;; hard-coded.
(("gww_prefix in.*") (string-append "gww_prefix in "
cairo " " pango "\n"))))))
(add-after 'build 'build-contrib
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin")))
(and (zero? (system* "make" "-Ccontrib/fonttools"
"CC=gcc" "showttf"))
(begin (install-file "contrib/fonttools/showttf" bin)
#t)))))
(add-after 'install 'set-library-path
(lambda* (#:key inputs outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out"))