[bug#69432,1/3] website: Adjust style of web site builder.
Commit Message
* website/.guix.scm (lingua-web-site)[build]: Use ‘for-each’ and
‘install-file’ when copying font files.
---
website/.guix.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
Comments
Ludovic Courtès <ludo@gnu.org> writes:
> * website/.guix.scm (lingua-web-site)[build]: Use ‘for-each’ and
> ‘install-file’ when copying font files.
I did not remember there’s install-file. But with it the
> (mkdir-p (string-append #$output "/static/base/fonts"))
became unnecessary. Could you remove it?
Regards,
Florian
@@ -207,12 +207,13 @@
;; Include the Fira fonts used in
;; website/static/base/css/manual.css.
(mkdir-p (string-append #$output "/static/base/fonts"))
- (map (lambda (file)
- (copy-file (string-append #+font-fira-sans
- "/share/fonts/truetype/" file)
- (string-append #$output
- "/static/base/fonts/" file)))
- '("FiraSans-Bold.ttf" "FiraSans-Regular.ttf"))))))
+ (for-each (lambda (file)
+ (install-file (string-append #+font-fira-sans
+ "/share/fonts/truetype/"
+ file)
+ (string-append #$output
+ "/static/base/fonts")))
+ '("FiraSans-Bold.ttf" "FiraSans-Regular.ttf"))))))
(computed-file (string-append "guix-web-site-" lingua)
build