Files
packages/utils/fontconfig/test.sh
T
Alexandru Ardelean 3341af12c3 fontconfig: update to 2.16.0
Bugfix and maintenance release of the font configuration and discovery library.

Changelog: https://gitlab.freedesktop.org/fontconfig/fontconfig/-/blob/2.16.0/NEWS

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-05-10 11:32:19 +03:00

11 lines
216 B
Bash

#!/bin/sh
case "$1" in
fontconfig)
# Rebuild cache (succeeds even if no fonts are installed)
fc-cache 2>/dev/null
# List fonts; empty output is valid when no fonts are present
fc-list > /dev/null
;;
esac