Template
1
0
Fork 0
mirror of https://aur.archlinux.org/ocp-git.git synced 2024-10-22 21:42:56 +00:00
ocp-git/ocp-git.install

26 lines
610 B
Text
Raw Normal View History

2015-09-09 13:51:44 +00:00
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.
2015-09-09 13:51:44 +00:00
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
}