blob: 7becd9aca13230a4cf85e9faf5f5ead92a022efa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
infodir=/usr/share/info
filelist=(auctex.info.gz preview-latex.info.gz)
post_install() {
cat << EOF
==> For GNU Emacs, the recommended way to activate
==> AUCTeX and preview-latex is to add the
==> following lines to your ~/.emacs file:
(load "auctex.el" nil t t)
(load "preview-latex.el" nil t t)
EOF
}
|