el-get/recipes/org-mode.el
Jeff Kowalczyk be471b99b7 recipes/org-mode.el: new recipe Org Mode git version.
Note: this recipe currently errors out with:

    Package org-mode failed to install, remove it first.

Not sure of the reason that happens (this error message appears at two locations
in el-get.el). One possible explanation could be that org-mode is already
provided by recent versions of Emacs, specifically version 7.01 in Emacs 23+ and
Emacs bzr trunk.

To resolve this, el-get might need a :force keyword for recipes, to force
override of a provided package.

The Emacs 24 version returns: M-x org-version 7.01. The git development version
should return M-x org-version 7.01trans (HEAD...).

Typical init.el code replaced by this recipe is:

;; org-mode development version configuration
(add-to-list 'load-path "~/.emacs.d/vendor/org-mode/lisp")
(add-to-list 'load-path "~/.emacs.d/vendor/org-mode/contrib/lisp")
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(require 'org-install)

The org-mode make process takes a long time to run, making the choice of (el-get
'sync) significant if the user wants to get into Emacs quickly.
2010-11-08 20:21:08 +08:00

8 lines
215 B
EmacsLisp

(:name org-mode
:type git
:url "git://repo.or.cz/org-mode.git"
:info "doc"
:build ("make clean" "make" "make doc")
:load-path ("lisp" "contrib/lisp")
:features org-install)