blob: 8d2ccce9882ceb2df5519a4f4f1c508445697fbf (
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
|
pre_install() {
/bin/true
}
post_install() {
echo "-- Don't forget to install gtk or/and gtk2 packages to enable librcc"
echo " gui features"
echo "-- Also you may change /usr/bin/rcc-config symlink to switch between"
echo " gtk and gtk2 (rcc-gtk-config and rcc-gtk2-config)"
/bin/true
}
pre_upgrade() {
/bin/true
}
post_upgrade() {
/bin/true
}
pre_remove() {
/bin/true
}
post_remove() {
/bin/true
}
|