mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: font-gnu-unifont: Build from source.
* gnu/packages/fonts.scm (font-gnu-unifont)[source]: Add snippet to remove precompiled fonts. [arguments]: Add make-flag to build fonts. Add custom phase to adjust shell invocations. [native-inputs]: Add bdftopcf, console-setup, fontforge. [inputs]: Add perl-gd.
This commit is contained in:
parent
81c6a28eb0
commit
3f0ea68177
1 changed files with 15 additions and 3 deletions
|
@ -85,6 +85,7 @@ (define-module (gnu packages fonts)
|
|||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages fontutils)
|
||||
#:use-module (gnu packages gd)
|
||||
#:use-module (gnu packages gettext)
|
||||
#:use-module (gnu packages glib)
|
||||
#:use-module (gnu packages gtk)
|
||||
|
@ -857,7 +858,11 @@ (define-public font-gnu-unifont
|
|||
(string-append "mirror://gnu/unifont/unifont-"
|
||||
version "/unifont-" version ".tar.gz")))
|
||||
(sha256
|
||||
(base32 "1m9lfss6sbmcr0b6h7pxxmdl71j9dmnvk8idvxzylqrwpwjaj4bx"))))
|
||||
(base32 "1m9lfss6sbmcr0b6h7pxxmdl71j9dmnvk8idvxzylqrwpwjaj4bx"))
|
||||
(snippet
|
||||
'(begin
|
||||
(use-modules (guix build utils))
|
||||
(delete-file-recursively "font/precompiled")))))
|
||||
(build-system gnu-build-system)
|
||||
(outputs '("out" ; TrueType/OpenType version
|
||||
"pcf" ; PCF (bitmap) version
|
||||
|
@ -866,10 +871,15 @@ (define-public font-gnu-unifont
|
|||
(arguments
|
||||
`(#:tests? #f ; no check target
|
||||
#:make-flags
|
||||
(list (string-append "CC=" ,(cc-for-target)))
|
||||
(list (string-append "CC=" ,(cc-for-target))
|
||||
"BUILDFONT=TRUE")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(add-after 'unpack 'patch-source
|
||||
(lambda _
|
||||
(substitute* (find-files "." "Makefile")
|
||||
(("/bin/sh -s") (string-append (which "sh") " -s")))))
|
||||
(replace 'install
|
||||
(lambda* (#:key make-flags outputs #:allow-other-keys)
|
||||
(let* ((ttf (string-append (assoc-ref outputs "out")
|
||||
|
@ -895,8 +905,10 @@ (define-public font-gnu-unifont
|
|||
(invoke "gzip" "-9n" "doc/unifont.info")
|
||||
(install-file "doc/unifont.info.gz"
|
||||
(string-append bin "/share/info"))))))))
|
||||
(native-inputs
|
||||
(list bdftopcf console-setup fontforge))
|
||||
(inputs
|
||||
(list perl)) ; for utilities
|
||||
(list perl perl-gd)) ; for utilities
|
||||
(synopsis
|
||||
"Large bitmap font covering Unicode's Basic Multilingual Plane")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue