aboutsummaryrefslogtreecommitdiffstats
path: root/fontconfig.prov
diff options
context:
space:
mode:
Diffstat (limited to 'fontconfig.prov')
-rwxr-xr-xfontconfig.prov24
1 files changed, 0 insertions, 24 deletions
diff --git a/fontconfig.prov b/fontconfig.prov
deleted file mode 100755
index bfb6ea0..0000000
--- a/fontconfig.prov
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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