mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
553 B
Text
24 lines
553 B
Text
post_install() {
|
|
cat << EOF
|
|
|
|
:: To make use of slime, add the following lines to your
|
|
:: ~/.emacs.el or ~/.emacs:
|
|
|
|
(setq inferior-lisp-program "/path/to/lisp-executable")
|
|
(add-to-list 'load-path "/usr/share/emacs/site-lisp/slime/")
|
|
(require 'slime)
|
|
(slime-setup)
|
|
|
|
:: Then run 'M-x slime' from within emacs.
|
|
|
|
EOF
|
|
echo "Adding Info-File"
|
|
install-info /usr/share/info/slime.info.gz /usr/share/info/dir
|
|
}
|
|
|
|
post_upgrade() { post_install; }
|
|
|
|
pre_remove() {
|
|
echo "Removing Info-File"
|
|
install-info --delete /usr/share/info/slime.info.gz /usr/share/info/dir
|
|
}
|