diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-04-19 00:06:35 -0400 |
---|---|---|
committer | Guix Patches Tester <> | 2020-04-19 05:15:08 +0100 |
commit | 7b93e3b1b9a4f9ccab3175bd3eb7843ac05c090e (patch) | |
tree | 97c04b20ba3fe9ed8f3786e2e3967094d215a484 /gnu/packages | |
parent | de5200ada9932501dbe010990ed1acf7688846a6 (diff) | |
download | patches-7b93e3b1b9a4f9ccab3175bd3eb7843ac05c090e.tar patches-7b93e3b1b9a4f9ccab3175bd3eb7843ac05c090e.tar.gz |
gnu: font-gnu-freefont: Add otf and woff font types.series-3595
* gnu/packages/fonts.scm (font-gnu-freefont): Add otf and woff font types.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/fonts.scm | 34 |
1 files changed, 26 insertions, 8 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index dbc0c4f9d6..f06f5bcc60 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -230,9 +230,9 @@ The Lato 2.010 family supports more than 100 Latin-based languages, over 50 Cyrillic-based languages as well as Greek and IPA phonetics.") (license license:silofl1.1))) -(define-public font-gnu-freefont-ttf +(define-public font-gnu-freefont (package - (name "font-gnu-freefont-ttf") + (name "font-gnu-freefont") (version "20120503") (source (origin (method url-fetch) @@ -249,18 +249,36 @@ The Lato 2.010 family supports more than 100 Latin-based languages, over (lambda _ (let ((doc-dir (string-append %output "/share/doc/" ,name "-" ,version)) - (font-dir (string-append %output - "/share/fonts/truetype"))) + (ttf-font-dir (string-append %output + "/share/fonts/ttf")) + (otf-font-dir (string-append %output + "/share/fonts/otf")) + (woff-font-dir (string-append %output + "/share/fonts/woff"))) (mkdir-p doc-dir) (substitute* "Makefile" (("\\$\\(TMPDIR\\)") doc-dir) - (("sfd/\\*.ttf") "")) - (system* "make" "ttftar") - (mkdir-p font-dir) + (("sfd/\\*.ttf") "") + (("sfd/\\*.otf") "") + (("sfd/\\*.woff") "")) + (system* "make" "ttftar" "otftar" "wofftar") + (mkdir-p ttf-font-dir) + (mkdir-p otf-font-dir) + (mkdir-p woff-font-dir) (for-each (lambda (file) - (install-file file font-dir)) + (install-file file ttf-font-dir)) (filter (lambda (file) (string-suffix? "ttf" file)) + (find-files "." ""))) + (for-each (lambda (file) + (install-file file otf-font-dir)) + (filter + (lambda (file) (string-suffix? "otf" file)) + (find-files "." ""))) + (for-each (lambda (file) + (install-file file woff-font-dir)) + (filter + (lambda (file) (string-suffix? "woff" file)) (find-files "." ""))))))) #:test-target "tests")) ;; replace python 3 with python 2 |