//proc/self/root/lib/lib/lib/lib/#!/bin/sh
#
# Transform appdata xml file into RPM appdata(filename) provides
#
# Author: Michael Schroeder
# Based on other provides scripts from RPM
OLD_IFS="$IFS"
while read instfile ; do
case "$instfile" in
*.appdata.xml)
echo "appdata()"
echo "appdata(${instfile##*/appdata/})"
;;
esac
done
IFS=$OLD_IFS