mirror of
https://aur.archlinux.org/ocp-git.git
synced 2024-11-21 20:06:27 +00:00
24 lines
609 B
Text
24 lines
609 B
Text
infodir=usr/share/info
|
|
|
|
post_install() {
|
|
echo
|
|
echo Please note that you need to rebuild ocp-git after installing any of the optional dependencies for it.
|
|
echo
|
|
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
|
|
}
|
|
|
|
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
|
|
}
|