diff options
author | Dexter Morgan <dmorgan@mageia.org> | 2011-12-28 00:15:29 +0000 |
---|---|---|
committer | Dexter Morgan <dmorgan@mageia.org> | 2011-12-28 00:15:29 +0000 |
commit | 320372c2a454ab66c01456699ecebcbc3ad122ce (patch) | |
tree | 7a1442efe439863edb621df30be353870763bbb0 /desktop-file.prov | |
parent | 7fbb16921d42684fd499498176e1c23c1bd6f96b (diff) | |
download | rpm-setup-320372c2a454ab66c01456699ecebcbc3ad122ce.tar rpm-setup-320372c2a454ab66c01456699ecebcbc3ad122ce.tar.gz rpm-setup-320372c2a454ab66c01456699ecebcbc3ad122ce.tar.bz2 rpm-setup-320372c2a454ab66c01456699ecebcbc3ad122ce.tar.xz rpm-setup-320372c2a454ab66c01456699ecebcbc3ad122ce.zip |
Use upstream desktop-file.prov as we had exactly the same file
Diffstat (limited to 'desktop-file.prov')
-rwxr-xr-x | desktop-file.prov | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/desktop-file.prov b/desktop-file.prov deleted file mode 100755 index 5b159ae..0000000 --- a/desktop-file.prov +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# Transform desktop mimetype info into RPM mimehandler(type) provides -# -# Author: Richard Hughes <richard@hughsie.com> -# Based on other provides scripts from RPM - -OLD_IFS="$IFS" -while read instfile ; do - case "$instfile" in - *.desktop) - if ! grep -q '^Type=Application$' "$instfile"; then continue; fi - if ! grep -q '^Exec=' "$instfile"; then continue; fi - mime=`grep '^MimeType=' "$instfile" | cut -d'=' -f2` - IFS=';' - for type in $mime ; do - echo 'mimehandler('$type')' - done - ;; - esac -done -IFS=$OLD_IFS - |