mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
15 lines
393 B
Text
15 lines
393 B
Text
post_install() {
|
|
echo ">> To enable BBDB add this to your .emacs:"
|
|
echo ">> (require 'bbdb)"
|
|
echo ">> (bbdb-initialize)"
|
|
echo ">> If you use Gnus, add the following instead:"
|
|
echo ">> (require 'bbdb)"
|
|
echo ">> (bbdb-initialize 'gnus 'message)"
|
|
echo ">> (bbdb-insinuate-gnus)"
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
[ "$(type -t "$op")" = "function" ] && $op "$@"
|
|
|
|
# vim:set ts=2 sw=2 et:
|