Skip to content
Snippets Groups Projects
Unverified Commit 44636f57 authored by Arun Isaac's avatar Arun Isaac
Browse files

gnu: font-comic-neue: Prevent hidden files from being installed.

* gnu/packages/fonts.scm (font-comic-neue)[arguments]: Add
'delete-macosx-files' phase.
parent 8c5ad448
No related branches found
No related tags found
No related merge requests found
...@@ -1093,6 +1093,12 @@ (define-public font-comic-neue ...@@ -1093,6 +1093,12 @@ (define-public font-comic-neue
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
;; Delete Mac OS X specific files. If not deleted, these cause
;; several hidden files to be installed.
(add-before 'install 'delete-macosx-files
(lambda _
(delete-file-recursively "__MACOSX")
#t))
(add-after 'install 'install-conf (add-after 'install 'install-conf
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let ((conf-dir (string-append (assoc-ref outputs "out") (let ((conf-dir (string-append (assoc-ref outputs "out")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment