slackware-current/source/d/pkg-config/doinst.sh

10 lines
412 B
Bash
Raw Normal View History

# Break the /usr/share/pkgconfig symlinks, if it exists.
# Then move the .pc files to the standard location.
if [ -L usr/share/pkgconfig ]; then
rm usr/share/pkgconfig
mkdir -p usr/share/pkgconfig
grep usr/share/pkgconfig var/log/packages/* | grep '\.pc$' | cut -f 2 -d : | cut -f 4 -d / | while read movefile ; do
mv usr/lib/pkgconfig/$movefile usr/share/pkgconfig 1> /dev/null 2> /dev/null
done
fi