Your IP : 18.118.12.50


Current Path : /usr/lib/rpm/
Upload File :
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