blob: f09c533f46a400fa1e149f377b31c7c7d93868a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install () {
update-desktop-database -q
echo "* Edit config.h in sxiv's PKGBUILD directory (generally /var/abs/community/sxiv/)"
echo " and rebuild package if you want to change settings."
echo "* Create the directory ~/.sxiv/ to enable thumbnail caching."
echo " See sxiv(1) for more information."
}
post_upgrade () {
post_install ${1}
}
|