2005-06-10 17:19:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pkgconfig=${1:-/usr/bin/pkg-config}
|
|
|
|
test -x $pkgconfig || exit 0
|
|
|
|
while read filename ; do
|
|
|
|
case "${filename}" in
|
|
|
|
*.pc)
|
2010-05-27 12:21:55 +00:00
|
|
|
$pkgconfig --print-requires --print-requires-private "$filename" 2> /dev/null | while read n r v ; do
|
2005-06-10 17:19:17 +00:00
|
|
|
echo "pkgconfig($n)" "$r" "$v"
|
|
|
|
done
|
|
|
|
esac
|
|
|
|
done
|