initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
post_install() {
cat << _EOF
Fontconfig configuration is done via /etc/fonts/conf.avail and conf.d.
Read /etc/fonts/conf.d/README for more information.
Configuration via /etc/fonts/local.conf is still possible,
but is no longer recommended for options available in conf.avail.
Main systemwide configuration should be done by symlinks
(especially for autohinting, sub-pixel and lcdfilter):
cd /etc/fonts/conf.d
ln -s ../conf.avail/XX-foo.conf
_EOF
post_upgrade $1
}
post_upgrade() {
echo -n "Rebuilding fontconfig cache..."
# a full forced directory scan is required here
/usr/bin/fc-cache -rs
echo " done."
}
post_remove() {
cat << _EOF
Check for dead symlinks and leftover files
in /etc/fonts/conf.d/
_EOF
}