aboutsummaryrefslogtreecommitdiffstats
path: root/pkgconfigdeps.sh
blob: f5eb66c7794c2e0ac7b09f4a1c7e22301018898f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash

pkgconfig=/usr/bin/pkg-config
test -x $pkgconfig || {
    cat > /dev/null
    exit 0
}

[ $# -ge 1 ] || {
    cat > /dev/null
    exit 0
}

case $1 in
-P|--provides)
    while read filename ; do
    case "${filename}" in
    *.pc)
	# Assume that this file doesn't contain useful information.
    pcfiles=${pcfiles}" ${filename}"
    PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$(dirname ${filename})
	;;
    esac
    done
	# Query the dependencies of the package.
	PKG_CONFIG_PATH=$PKG_CONFIG_PATH $pkgconfig --print-provides $pcfiles 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"
	done
	# The dependency on the pkgconfig package itself.
    ;;
-R|--requires)
    while read filename ; do
    case "${filename}" in
    *.pc)
    pcfiles=${pcfiles}" ${filename}"
    PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$(dirname ${filename})
    esac
    done
    PKG_CONFIG_PATH=$PKG_CONFIG_PATH $pkgconfig --print-requires ${pcfiles} 2> /dev/null | while read n r v ; do
	    echo "pkgconfig($n)" "$r" "$v"
    done
    ;;
esac
exit 0