gnu: console-font: Install bdf2psf.
* gnu/packages/xorg.scm (console-font)[arguments]: Add custom 'install-bdf2psf phase to install bdf2psf and its manpage.
This commit is contained in:
parent
dec9cb985c
commit
75d4abf2eb
1 changed files with 7 additions and 1 deletions
|
@ -6582,7 +6582,13 @@ (define-public console-setup
|
|||
(replace 'install
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "make" "install-linux"
|
||||
make-flags))))))
|
||||
make-flags)))
|
||||
(add-after 'install 'install-bdf2psf
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(install-file "Fonts/bdf2psf"
|
||||
(string-append #$output "/bin"))
|
||||
(install-file "man/bdf2psf.1"
|
||||
(string-append #$output "/share/man/man1")))))))
|
||||
(native-inputs
|
||||
(list pkg-config
|
||||
bdftopcf
|
||||
|
|
Loading…
Reference in a new issue