kiss-mfavila-large/ports/iosevka-font/build

12 lines
474 B
Plaintext
Raw Normal View History

2021-07-15 03:27:45 +00:00
#!/bin/sh -e
# Work around the fact that we're working with a ZIP until the package manager
# can handle them.
for font in ./*.ttf
do
install -Dm644 "${font}" "${1}/usr/share/fonts/TTF/${font}"
done
printf "\n#############################################################################\n##"
printf "Remember to run fc-cache, chief! Otherwise X programs can't use the font!##\n"
printf "#############################################################################\n\n"