mingw-filesystem/mingw.prov
Miroslav Rezanina a9f4c4c5b5 Rebase to Fedora Rawhide
last_sync: c5baad7c9b
resolves: RHEL-24347
side-tag: c9s-build-side-2893-stack-gate
2024-02-06 12:26:29 +01:00

35 lines
920 B
Bash
Executable File

#!/bin/bash
# This script reads filenames from STDIN and outputs any relevant provides
# information that needs to be included in the package.
targets=$@
if [ -z "$targets" ] ; then
echo "Usage: $0 [ mingw32 ] [ mingw64 ] [ ucrt64 ]"
exit 1
fi
filelist=`sed "s/['\"]/\\\&/g"`
dlls=$(echo $filelist | tr '[:blank:]' '\n' | grep '\.dll$')
for f in $dlls; do
basename=`basename $f | tr '[:upper:]' '[:lower:]'`
for target in $targets; do
host_triplet=`rpm --eval "%{${target}_target}"`
[[ $f =~ .*$host_triplet.* ]] && echo "$target($basename)"
done
done
pcs=$(echo $filelist | tr '[:blank:]' '\n' | grep '\.pc$')
for f in $pcs; do
basename=`basename $f .pc | tr '[:upper:]' '[:lower:]'`
for target in $targets; do
host_triplet=`rpm --eval "%{${target}_target}"`
[[ $f =~ .*$host_triplet.* ]] && echo "${target}-pkgconfig($basename)"
done
done
exit 0