diff options
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..33fb64c --- /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/libraw1394.so.11.0.1 /usr/lib/libraw1394.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/libraw1394.so.8 +} + +op=$1 +shift +$op $* |