gnu: console-font: Install bdf2psf.
* gnu/packages/xorg.scm (console-font)[arguments]: Add custom 'install-bdf2psf phase to install bdf2psf and its manpage.
parent
dec9cb985c
commit
75d4abf2eb
|
@ -6582,7 +6582,13 @@ output.")
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key make-flags #:allow-other-keys)
|
(lambda* (#:key make-flags #:allow-other-keys)
|
||||||
(apply invoke "make" "install-linux"
|
(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
|
(native-inputs
|
||||||
(list pkg-config
|
(list pkg-config
|
||||||
bdftopcf
|
bdftopcf
|
||||||
|
|
Reference in New Issue