diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-02-19 08:22:55 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-02-19 08:22:55 (GMT) |
commit | a161e177385ed48565736c46276f703ca8df231b (patch) | |
tree | 13de45804d47f1c3e9d08ecae83076d727121b78 /abs/core-testing/libraw1394/libraw1394.install | |
parent | 9a4e4e6da75eb69b33fda9bb3952069131091562 (diff) | |
download | linhes_pkgbuild-a161e177385ed48565736c46276f703ca8df231b.zip linhes_pkgbuild-a161e177385ed48565736c46276f703ca8df231b.tar.gz linhes_pkgbuild-a161e177385ed48565736c46276f703ca8df231b.tar.bz2 |
Fixes MythTV and libraw1394.so.8.
Diffstat (limited to 'abs/core-testing/libraw1394/libraw1394.install')
-rw-r--r-- | abs/core-testing/libraw1394/libraw1394.install | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/abs/core-testing/libraw1394/libraw1394.install b/abs/core-testing/libraw1394/libraw1394.install new file mode 100644 index 0000000..a51232d --- /dev/null +++ b/abs/core-testing/libraw1394/libraw1394.install @@ -0,0 +1,18 @@ +# arg 1: the new package version +post_install() { + ln -s /usr/lib/libraw1392.so.11.0.1 /usr/lib/libraw1392.so.8 +} +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + /bin/true +} + +# arg 1: the old package version +post_remove() { + rm -fr /usr/lib/libraw1392.so.8 +} + +op=$1 +shift +$op $* |