el-get/recipes/wanderlust.rcp
Ryan C. Thompson cb787b2a7a Always print with "print-level" and "print-length" nil
This prevents Emacs from inserting "..." in place of very deep or long
data structures, which could corrupt the status file in some cases.
This is done by defining a wrapper function "el-get-print-to-string",
which el-get should use for all "critical" stringification tasks.

As noted in #689.
2012-03-29 14:52:43 -07:00

27 lines
1023 B
Plaintext

(:name wanderlust
:description "Wanderlust bootstrap."
:depends semi
:type cvs
:module "wanderlust"
:url ":pserver:anonymous@cvs.m17n.org:/cvs/root"
:build (mapcar
(lambda (target-and-dirs)
(list el-get-emacs
(mapcar (lambda (pkg)
(mapcar (lambda (d) `("-L" ,d)) (el-get-load-path pkg)))
(append
'("apel" "flim" "semi")
(when (el-get-package-exists-p "bbdb") (list "bbdb"))))
"--eval" (el-get-print-to-string
'(progn (setq wl-install-utils t)
(setq wl-info-lang "en")
(setq wl-news-lang "en")))
(split-string "-batch -q -no-site-file -l WL-MK -f")
target-and-dirs))
'(("wl-texinfo-format" "doc")
("compile-wl-package" "site-lisp" "icons")
("install-wl-package" "site-lisp" "icons")))
:info "doc/wl.info"
:load-path ("site-lisp/wl" "utils"))