el-get/recipes/org-mode.rcp
Mike McLean 9ed9415280 Change Org Mode build rule for Makefile Restructuring
Org-Mode recently had a major Makefile and build process overhaul. As
per Samuel Wales on the Org-Mode mailing list [1] the correct build
process for when you don’t install org (i.e. run it directly out of the
Git worktree) would be:

=make compile autoloads info=

This patch changes the Org-Mode build accordingly.

[1] http://permalink.gmane.org/gmane.emacs.orgmode/55022
2012-04-21 21:24:04 -04:00

19 lines
857 B
Plaintext

(:name org-mode
:website "http://orgmode.org/"
:description "Org-mode is for keeping notes, maintaining ToDo lists, doing project planning, and authoring with a fast and effective plain-text system."
:type git
:url "git://orgmode.org/org-mode.git"
:info "doc"
:build/berkeley-unix `,(mapcar
(lambda (target)
(list "gmake" target (concat "EMACS=" (shell-quote-argument el-get-emacs))))
'("compile" "autoloads" "info"))
:build `,(mapcar
(lambda (target)
(list "make" target (concat "EMACS=" (shell-quote-argument el-get-emacs))))
'("compile" "autoloads" "info"))
:load-path ("." "lisp" "contrib/lisp")
:autoloads nil
:features org-install)