Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 91d72dadf5610c59119a1a7423efee70 > files > 2

xorg-x11-server-1.8.2-4.fc13.src.rpm

#!/bin/sh
#
# Extract ABI versions from the .pc file.  Filter out xserver modules.
#
# Copyright 2009 Red Hat, Inc.
# License: MIT

abis=`grep ^abi "$1" | tr '_=.' '-- '`
echo $abis | while read major minor; do
    echo "xserver($major) = $minor"
done

shift

# exec "$@" | grep -v '\.so$'