Blame SOURCES/fontconfig-flatpak.prov

641778
#!/usr/bin/bash
641778
#
641778
# Script to install in:
641778
# /usr/lib/rpm/redhat/find-provides.d
641778
#
641778
# Transform font files into RPM provides
641778
# Requires fontconfig >= 2.6.90
641778
#
641778
# Author: Behdad Esfahbod <behdad@redhat.com>
641778
# Based on other provides scripts from RPM
641778
#
641778
641778
fcquery=/usr/bin/fc-query
641778
641778
if [ ! -x $fcquery ]; then
641778
    cat > /dev/null
641778
    exit 0
641778
fi
641778
641778
# filter out anything outside main fontconfig paths
641778
grep '/\(usr\|app\)/share/fonts/' |
641778
while read fn; do
641778
    $fcquery --format '%{=pkgkit}' "${fn}" 2> /dev/null
641778
done