xorg-x11-server/find-provides

16 lines
290 B
Plaintext
Raw Normal View History

2009-02-25 20:37:02 +00:00
#!/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$'