blob: a3790ab7d4b5f5260b95ae4965bf4a17d5c0aa1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# arg 1: the new package version
post_install() {
echo "NOTE:"
echo " For gtk1 frontend please add 'gtk' package."
echo " For gtk2 frontend please add 'gtk2' package."
echo " Default X11 frontend is set to gtk2. "
echo ""
echo " If you want to default to gtk1 unison:"
echo " 'rm /usr/bin/unison-x11'"
echo " 'ln -s /usr/bin/unison-gtk /usr/bin/unison-x11'"
echo ""
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install $1
}
# arg 1: the old package version
pre_remove() {
/bin/true
}
# arg 1: the old package version
post_remove() {
/bin/true
}
|