unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#45309] [PATCH] gnu: font-google-roboto: Unzip fonts to a directory.
@ 2020-12-18  3:34 Michael Rohleder
  2020-12-18  5:27 ` Michael Rohleder
  2021-01-12  9:12 ` Nicolas Goaziou
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Rohleder @ 2020-12-18  3:34 UTC (permalink / raw)
  To: 45309

* gnu/packages/fonts.scm (font-google-roboto)[arguments]: Add phase to unpack
to a directory and ignore macosx files.
---
After commit e93ee2547ecec152f9a198ccc338c4329cc69a71 this pkg doesn't contain anything.
The difference to the version before is that the upstream zip file doesn't
contain a subfolder anymore, so this patch unpacks to one (and excludes macosx
files while at it).

Maybe the roboto-hinted.zip is better than unhinted? Idk.

 gnu/packages/fonts.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 717656d682..72e97d99ea 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -801,6 +801,15 @@ display all Unicode symbols.")
        (sha256
         (base32 "0a57f957qy49kildqx2lp2paqk9i8kkayakmrzxh39hhhmqlrxkh"))))
     (build-system font-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (replace 'unpack
+           (lambda* (#:key inputs #:allow-other-keys)
+             (invoke "unzip" (assoc-ref inputs "source")
+                     "-x" "__MACOSX/*"
+                     "-d" "roboto-unhinted")
+             #t)))))
     (home-page "https://github.com/google/roboto")
     (synopsis "The Roboto family of fonts")
     (description
-- 
2.29.2





^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-01-12  9:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-18  3:34 [bug#45309] [PATCH] gnu: font-google-roboto: Unzip fonts to a directory Michael Rohleder
2020-12-18  5:27 ` Michael Rohleder
2021-01-12  9:12 ` Nicolas Goaziou
2021-01-12  9:31   ` Michael Rohleder

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).