[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: font-gnu-unifont: Update to 15.0.01.
From: |
guix-commits |
Subject: |
05/06: gnu: font-gnu-unifont: Update to 15.0.01. |
Date: |
Tue, 25 Oct 2022 02:42:15 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 81c6a28eb0162d8f87dfe7c4d1327f89a5e6b047
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Oct 24 22:41:35 2022 +0300
gnu: font-gnu-unifont: Update to 15.0.01.
* gnu/packages/fonts.scm (font-gnu-unifont): Update to 15.0.01.
[arguments]: Adjust custom 'install phase to set install directory for
OTF fonts.
---
gnu/packages/fonts.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index eca225d8b8..5afaf2fd25 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -847,7 +847,7 @@ for use at smaller text sizes")))
(define-public font-gnu-unifont
(package
(name "font-gnu-unifont")
- (version "14.0.04")
+ (version "15.0.01")
(source
(origin
(method url-fetch)
@@ -857,9 +857,9 @@ for use at smaller text sizes")))
(string-append "mirror://gnu/unifont/unifont-"
version "/unifont-" version ".tar.gz")))
(sha256
- (base32 "1fzycjxmgnq77r2s5914w1phg3qdwwnwa6p3zyfa1cscrxy52phz"))))
+ (base32 "1m9lfss6sbmcr0b6h7pxxmdl71j9dmnvk8idvxzylqrwpwjaj4bx"))))
(build-system gnu-build-system)
- (outputs '("out" ; TrueType version
+ (outputs '("out" ; TrueType/OpenType version
"pcf" ; PCF (bitmap) version
"psf" ; PSF (console) version
"bin")) ; Utilities to manipulate '.hex' format
@@ -874,14 +874,19 @@ for use at smaller text sizes")))
(lambda* (#:key make-flags outputs #:allow-other-keys)
(let* ((ttf (string-append (assoc-ref outputs "out")
"/share/fonts/truetype"))
+ (otf (string-append (assoc-ref outputs "out")
+ "/share/fonts/opentype"))
(pcf (string-append (assoc-ref outputs "pcf")
"/share/fonts/misc"))
(psf (string-append (assoc-ref outputs "psf")
"/share/consolefonts"))
(bin (assoc-ref outputs "bin")))
+ ;; This directory isn't created in fonts/Makefile.
+ (mkdir-p otf)
(apply invoke "make" "install"
(string-append "PREFIX=" bin)
(string-append "TTFDEST=" ttf)
+ (string-append "OTFDEST=" otf)
(string-append "PCFDEST=" pcf)
(string-append "CONSOLEDEST=" psf)
make-flags)
- branch master updated (a2e4e3489b -> 3f0ea68177), guix-commits, 2022/10/25
- 01/06: gnu: gnuastro: Update to 0.19., guix-commits, 2022/10/25
- 03/06: gnu: gama: Update to 2.23., guix-commits, 2022/10/25
- 06/06: gnu: font-gnu-unifont: Build from source., guix-commits, 2022/10/25
- 04/06: gnu: console-font: Install bdf2psf., guix-commits, 2022/10/25
- 05/06: gnu: font-gnu-unifont: Update to 15.0.01.,
guix-commits <=
- 02/06: gnu: freeipmi: Update to 1.6.10., guix-commits, 2022/10/25