| Current Path : /usr/lib/rpm/ |
| Current File : //usr/lib/rpm/appdata.prov |
#!/bin/sh
#
# Transform appdata xml file into RPM appdata(filename) provides
#
# Author: Michael Schroeder <mls@suse.de>
# 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