HEX
Server: LiteSpeed
System: Linux c002.dapurhosting.com 3.10.0-962.3.2.lve1.5.83.el7.x86_64 #1 SMP Thu Nov 23 15:58:18 UTC 2023 x86_64
User: distri20 (2231)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: //lib/rpm/fontconfig.prov
#!/bin/bash
#
# Script to install in:
# /usr/lib/rpm/redhat/find-provides.d
#
# Transform font files into RPM provides
# Requires fontconfig >= 2.6.90
#
# Author: Behdad Esfahbod <behdad@redhat.com>
# Based on other provides scripts from RPM
#

fcquery=/usr/bin/fc-query

if [ ! -x $fcquery ]; then
    cat > /dev/null
    exit 0
fi

# filter out anything outside main fontconfig path
grep /usr/share/fonts/ |
while read fn; do
    $fcquery --format '%{=pkgkit}' "${fn}" 2> /dev/null
done