Allow '.' in dll names for find-requires
[fedora-mingw.git] / filesystem / mingw-find-requires.sh
1 #!/bin/bash
2
3 # This script reads filenames from STDIN and outputs any relevant provides
4 # information that needs to be included in the package.
5
6 if [ "$1" ]
7 then
8    package_name="$1"
9 fi
10
11 [ -z "$OBJDUMP" ] && OBJDUMP=i686-pc-mingw32-objdump
12
13 # Get the list of files.
14
15 filelist=`sed "s/['\"]/\\\&/g"`
16
17 # Everything requires mingw-filesystem of at least the current version
18 # and mingw-runtime.
19 echo 'mingw-filesystem >= @VERSION@'
20 echo 'mingw-runtime'
21
22 dlls=$(echo $filelist | tr [:blank:] '\n' | grep '\.dll$')
23
24 for f in $dlls; do
25     $OBJDUMP -p $f | grep 'DLL Name' | grep -Eo '[-._[:alnum:]]+\.dll' |
26         tr [:upper:] [:lower:] |
27         sed 's/\(.*\)/mingw(\1)/'
28 done | sort -u