el-get/recipes/auctex.rcp
Rüdiger Sonderfeld e5072653c6 recipes/auctex.rcp: Set correct dirs.
If `packagelispdir' and `packagedatadir' are not set then AUCTeX expects
tex-site.el to be in a directory above the actual auctex dir and sets
the variables `TeX-data-directory' and `TeX-lisp-directory' to incorrect
values.  This will prevent such things as correct loading of the styles/
directory.

Signed-off-by: Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2014-03-10 20:45:46 +01:00

20 lines
904 B
Plaintext

(:name auctex
:website "http://www.gnu.org/software/auctex/"
:description "AUCTeX is an extensible package for writing and formatting TeX files in GNU Emacs and XEmacs. It supports many different TeX macro packages, including AMS-TeX, LaTeX, Texinfo, ConTeXt, and docTeX (dtx files)."
:type git
:module "auctex"
:url "git://git.savannah.gnu.org/auctex.git"
:build `(("./autogen.sh")
("./configure"
"--without-texmf-dir"
"--with-packagelispdir=$(pwd)"
"--with-packagedatadir=$(pwd)"
,(cond
((eq system-type 'darwin) "--with-lispdir=`pwd`")
(t ""))
,(concat "--with-emacs=" el-get-emacs))
"make")
:load-path ("." "preview")
:load ("tex-site.el" "preview/preview-latex.el")
:info "doc")