diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-04-21 17:43:20 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2024-10-19 15:40:56 +0200 |
commit | 78b52c1f19069a39182e6cc2ceb2dac38af8d5d3 (patch) | |
tree | 2f86e7d32920d34a6625022f154f591a590adc05 /gnu | |
parent | 9b4672fd6be6f81d47802c7182082a3225dfb558 (diff) |
gnu: font-scientifica: Remove unnecessary custom install phase.
* gnu/packages/fonts.scm (font-scientifica)[arguments]: Remove field.
Change-Id: Ice422a8604adba6b4a5b31675303f4030c6e35af
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/fonts.scm | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 7e9fd00158..61de04990d 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -3662,34 +3662,6 @@ Spleen also has support for Powerline symbols out of the box.") (build-system font-build-system) (outputs '("out" ;OTB "bdf" "ttf")) - (arguments - (list #:phases #~(modify-phases %standard-phases - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((otb (assoc-ref outputs "out")) - (bdf (assoc-ref outputs "bdf")) - (ttf (assoc-ref outputs "ttf")) - (otb-font-dir (string-append (assoc-ref - outputs "out") - "/share/fonts/misc")) - (ttf-font-dir (string-append (assoc-ref - outputs "ttf") - "/share/fonts/truetype")) - (bdf-font-dir (string-append (assoc-ref - outputs "bdf") - "/share/fonts/misc"))) - (mkdir-p otb-font-dir) - (mkdir-p bdf-font-dir) - (mkdir-p ttf-font-dir) - (for-each (lambda (otb) - (install-file otb otb-font-dir)) - (find-files "." "\\.otb$")) - (for-each (lambda (bdf) - (install-file bdf bdf-font-dir)) - (find-files "." "\\.bdf$")) - (for-each (lambda (ttf) - (install-file ttf ttf-font-dir)) - (find-files "." "\\.ttf$"))) #t))))) (home-page "https://github.com/nerdypepper/scientifica") (synopsis "Tall and condensed bitmap font for geeks") (description |