summaryrefslogtreecommitdiff
path: root/autodeps/solaris.prov
blob: 6e0fe9f1a69b3c5bde98688297643f6753a03289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# This script reads filenames from STDIN and outputs any relevant provides
# information that needs to be included in the package.

PATH=/usr/bin:/usr/ccs/bin:/usr/sbin:/sbin
export PATH

filelist=`grep "lib.*\\.so" | xargs /usr/ucb/file -L 2>/dev/null |\
	grep "ELF.*dynamic lib" | cut -d: -f1 | sort -u`
for I in $filelist; do
        basename $I
done