blob: 810d7bf9278b9d34f1e6098a0bcbfe28be8eba32 (
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
|
infodir=usr/share/info
post_install() {
[ -x usr/bin/install-info ] || return 0
install-info $infodir/ocp.info.gz $infodir/dir 2> /dev/null
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
update-desktop-database -q
echo
echo Please note that you need to rebuild ocp-git after installing any of the optional dependencies for it.
echo
}
post_upgrade() {
post_install
}
pre_remove() {
install-info --delete $infodir/ocp.info.gz $infodir/dir 2> /dev/null
}
post_remove() {
update-desktop-database -q
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
|