diff options
author | James Meyer <james.meyer@operamail.com> | 2009-02-19 16:04:38 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-02-19 16:04:38 (GMT) |
commit | 097ebc5aece43798e785d620d3ad56f568501a2b (patch) | |
tree | 364510c7db1d5cde85de51a47f012e414c29cb9f /abs/core-testing/libraw1394/libraw1394.install | |
parent | 31352df953653df1b5d6f193c3ed192536467b31 (diff) | |
parent | ac3eb72b60881ff3478663ec4aaf60b708edd870 (diff) | |
download | linhes_pkgbuild-097ebc5aece43798e785d620d3ad56f568501a2b.zip linhes_pkgbuild-097ebc5aece43798e785d620d3ad56f568501a2b.tar.gz linhes_pkgbuild-097ebc5aece43798e785d620d3ad56f568501a2b.tar.bz2 |
Merge branch 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-PKGBUILD.git
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 $* |