/usr/lib/rpm/redhat
NameSizeModeActions
find-provides.d/-0755rm
brp-compress14500755editdlrm
brp-implant-ident-static9700755editdlrm
brp-java-repack-jars26600755editdlrm
brp-python-hardlink6820755editdlrm
brp-redhat4050755editdlrm
brp-sparc64-linux10750755editdlrm
brp-strip5090755editdlrm
brp-strip-comment-note8030755editdlrm
brp-strip-shared7070755editdlrm
brp-strip-static-archive4160755editdlrm
config.guess445950755editdlrm
config.sub327260755editdlrm
dist.sh19630755editdlrm
find-provides28590755editdlrm
find-provides.ksyms2410755editdlrm
find-provides.libtool1870755editdlrm
find-provides.pkgconfig6030755editdlrm
find-requires41440755editdlrm
find-requires.ksyms45430755editdlrm
find-requires.libtool2710755editdlrm
find-requires.pkgconfig2570755editdlrm
kmodtool76770755editdlrm
macros88680644editdlrm
perl.prov48470755editdlrm
perl.req63670755editdlrm
rpmrc33290644editdlrm
rpmsort21620755editdlrm
symset-table9030755editdlrm
Edit: /usr/lib/rpm/redhat/find-provides.pkgconfig (603B)
#!/bin/bash pkgconfig=${1:-/usr/bin/pkg-config} test -x $pkgconfig || exit 0 while read filename ; do case "${filename}" in *.pc) # Assume that this file doesn't contain useful information. needs_pkgconfig=false # Query the dependencies of the package. $pkgconfig --print-provides "$filename" 2> /dev/null | while read n r v ; do # We have a dependency. Make a note that we need the pkgconfig # tool for this package. echo "pkgconfig($n)" "$r" "$v" needs_pkgconfig=true done # The dependency on the pkgconfig package itself. if $needs_pkgconfig ; then echo pkgconfig fi ;; esac done