diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-06-14 22:14:12 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-06-14 22:14:12 (GMT) |
commit | f03345c90a69c1ff35a2d022a7d5de811525741a (patch) | |
tree | a4a9c3d582f5fb904ae744fcf3d21d85d170c493 /abs/extra-testing/mediaserv/mediaserv.install | |
parent | 4fe90a5073185649602481863c5f4885158ac034 (diff) | |
download | linhes_pkgbuild-f03345c90a69c1ff35a2d022a7d5de811525741a.zip linhes_pkgbuild-f03345c90a69c1ff35a2d022a7d5de811525741a.tar.gz linhes_pkgbuild-f03345c90a69c1ff35a2d022a7d5de811525741a.tar.bz2 |
Initial inclusion of mediaserv, an "ORB like daemon" targetted at streaming to the Nokia Internet Tablet. Can be used with any browse.
Diffstat (limited to 'abs/extra-testing/mediaserv/mediaserv.install')
-rw-r--r-- | abs/extra-testing/mediaserv/mediaserv.install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/extra-testing/mediaserv/mediaserv.install b/abs/extra-testing/mediaserv/mediaserv.install new file mode 100644 index 0000000..1b166e4 --- /dev/null +++ b/abs/extra-testing/mediaserv/mediaserv.install @@ -0,0 +1,20 @@ +# arg 1: the new package version +post_install() { + ln -s /myth/mediaserv /home/mythtv/.mediaserv + chown -R mythtv.mythtv /myth/mediaserv +} +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + post_install $1 +} + +# arg 1: the old package version +post_remove() { + rm -fr /home/mythtv/.mediaserv + rm -fr /myth/mediaserv +} + +op=$1 +shift +$op $* |