diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-08-24 17:51:23 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-08-24 17:54:10 +0200 |
commit | c1352b4badd2020448eb69e6ae212b43f5dceb15 (patch) | |
tree | 57551986e3ee4b24c810429d2a82f35bd7e69aac /gnu | |
parent | bf0bb925ea055496086fe0df48fc88977a5cc2cc (diff) | |
download | patches-c1352b4badd2020448eb69e6ae212b43f5dceb15.tar patches-c1352b4badd2020448eb69e6ae212b43f5dceb15.tar.gz |
gnu: font-gnu-unifont: Update to 11.0.02.
* gnu/packages/fonts.scm (font-gnu-unifont): Update to 11.0.02.
[arguments]: Adjust code to install 'unifont.info.gz' in 'install'
phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/fonts.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index dd91d77c6c..4d02b4bc62 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -621,7 +621,7 @@ languages, plus Greek and Cyrillic.") (define-public font-gnu-unifont (package (name "font-gnu-unifont") - (version "11.0.01") + (version "11.0.02") (source (origin (method url-fetch) (uri (string-append @@ -629,7 +629,7 @@ languages, plus Greek and Cyrillic.") version ".tar.gz")) (sha256 (base32 - "1nkapra0ic4fp3lmnvfc6jly62yskhcdkwrnq29hvh3xs51ncc52")))) + "1di8i44c163b9l5f08jcrjfijnqz0j7p7hpfvf8dcms6cm6s4wvy")))) (build-system gnu-build-system) (outputs '("out" ; TrueType version "pcf" ; PCF (bitmap) version @@ -662,8 +662,9 @@ languages, plus Greek and Cyrillic.") "install") ;; Move Texinfo file to the right place. (mkdir (string-append bin "/share/info")) - (rename-file (string-append bin "/share/unifont/unifont.info.gz") - (string-append bin "/share/info/unifont.info.gz")) + (invoke "gzip" "-9n" "doc/unifont.info") + (install-file "doc/unifont.info.gz" + (string-append bin "/share/info")) #t)))))) (inputs `(("perl" ,perl))) ; for utilities |