#!/bin/sh

set -e

VIDEO_HIGHLIGHT="x-maemo-highlight/veoh-video-url=cutetube2.desktop"
DEFAULTS="/usr/share/applications/defaults.list"

echo "Adding highlight handlers to defaults.list"

if ! grep $VIDEO_HIGHLIGHT $DEFAULTS; then echo $VIDEO_HIGHLIGHT >> $DEFAULTS; fi

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0
