2015-09-09 13:51:44 +00:00
|
|
|
infodir=usr/share/info
|
|
|
|
|
|
|
|
post_install() {
|
|
|
|
echo
|
2015-09-13 08:38:54 +00:00
|
|
|
echo Please note that you need to rebuild ocp-git after installing any of the optional dependencies for it.
|
2015-09-09 13:51:44 +00:00
|
|
|
echo
|
2016-03-21 14:50:34 +00:00
|
|
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
|
|
|
update-desktop-database -q
|
|
|
|
[ -x usr/bin/install-info ] || return 0
|
|
|
|
install-info $infodir/ocp.info.gz $infodir/dir 2> /dev/null
|
2015-09-09 13:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|