blob: a51232d57ed195b047bd0b3878d89ef1dfaa1a01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 $*
|