el-get/recipes/magit.rcp
Syohei YOSHIDA 0a7d76f31f Update magit recipes
- Update magit dependencies
- with-editor is hosted own repository now

Close #2328
2016-01-29 01:47:51 -05:00

22 lines
991 B
Plaintext

(:name magit
:website "https://github.com/magit/magit#readme"
:description "It's Magit! An Emacs mode for Git."
:type github
:pkgname "magit/magit"
:branch "master"
:minimum-emacs-version "24.4"
:depends (dash with-editor emacs-async)
:info "Documentation"
:load-path "lisp/"
:compile "lisp/"
;; Use the Makefile to produce the info manual, el-get can
;; handle compilation and autoloads on its own. Create an
;; empty autoloads file because magit.el explicitly checks for
;; a file of that name.
:build `(("make" ,(format "EMACSBIN=%s" el-get-emacs) "docs")
("touch" "lisp/magit-autoloads.el"))
:build/berkeley-unix `(("gmake" ,(format "EMACSBIN=%s" el-get-emacs) "docs")
("touch" "lisp/magit-autoloads.el"))
;; assume windows lacks make and makeinfo
:build/windows-nt (with-temp-file "lisp/magit-autoloads.el" nil))