summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/mythappletrailers/mythappletrailers.install
diff options
context:
space:
mode:
authorCecil Hugh Watson <knoppmyth@gmail.com>2009-01-24 00:09:24 (GMT)
committerCecil Hugh Watson <knoppmyth@gmail.com>2009-01-24 00:09:24 (GMT)
commit33c0f818a9694819fd08ae9d32263e915338a13d (patch)
treeafa597e599cee91edc7fe9f029383c590b501647 /abs/extra-testing/mythappletrailers/mythappletrailers.install
parentd605889115f15c2c628a12bd185bf3fd92b156ee (diff)
downloadlinhes_pkgbuild-33c0f818a9694819fd08ae9d32263e915338a13d.zip
linhes_pkgbuild-33c0f818a9694819fd08ae9d32263e915338a13d.tar.gz
linhes_pkgbuild-33c0f818a9694819fd08ae9d32263e915338a13d.tar.bz2
When plugin is installed, .install will place it in the appropriate menu. When plugin is removed, it will be removed from the menu.
Diffstat (limited to 'abs/extra-testing/mythappletrailers/mythappletrailers.install')
-rw-r--r--abs/extra-testing/mythappletrailers/mythappletrailers.install14
1 files changed, 14 insertions, 0 deletions
diff --git a/abs/extra-testing/mythappletrailers/mythappletrailers.install b/abs/extra-testing/mythappletrailers/mythappletrailers.install
index 133390c..d60a566 100644
--- a/abs/extra-testing/mythappletrailers/mythappletrailers.install
+++ b/abs/extra-testing/mythappletrailers/mythappletrailers.install
@@ -1,6 +1,18 @@
# arg 1: the new package version
post_install() {
ln -s /home/mythtv/appletrailer.xml /usr/share/mythtv/appletrailer.xml
+ mv /usr/share/mythtv/is.xml /tmp
+ grep -v -e /mythmenu /tmp/is.xml > /tmp/is.xml.tmp
+ echo "<!--#MythAppleTrailers-->" >> /tmp/is.xml.tmp
+ echo " <button>" >> /tmp/is.xml.tmp
+ echo " <type>MOVIETIMES</type>" >> /tmp/is.xml.tmp
+ echo " <text>Apple Trailers</text>" >> /tmp/is.xml.tmp
+ echo " <action>MENU appletrailer.xml</action>" >> /tmp/is.xml.tmp
+ echo " </button>" >> /tmp/is.xml.tmp
+ echo "<!--#MythAppleTrailers-->" >> /tmp/is.xml.tmp
+ echo "" >> /tmp/is.xml.tmp
+ echo "</mythmenu>" >> /tmp/is.xml.tmp
+ mv /tmp/is.xml.tmp /usr/share/mythtv/is.xml
}
# arg 1: the new package version
# arg 2: the old package version
@@ -16,6 +28,8 @@ post_upgrade() {
# arg 1: the old package version
post_remove() {
rm -fr /usr/share/mythtv/appletrailer.xml
+ mv /usr/share/mythtv/is.xml /tmp/is.xml.tmp
+ sed -e '/\#MythAp/,/\#MythAp/d' < /tmp/is.xml.tmp > /usr/share/mythtv/is.xml
}
op=$1