mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
3341af12c3
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>
11 lines
216 B
Bash
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
|