el-get/recipes/realgud.rcp
David Holm 48dde0994d Load realgud and not its dependencies from realgud recipe
The realgud recipe is loading (:features) its dependencies instead of itself
even though it has no problems loading its dependencies.  It is currently not
very autoload friendly so load realgud from :features.
2014-03-09 14:03:14 +01:00

16 lines
662 B
Plaintext

(:name realgud
:type github
:pkgname "rocky/emacs-dbgr"
:description "The Grand \"Cathedral\" Debugger rewrite: Towards a modular framework for interacting with external debuggers."
:depends (test-simple load-relative loc-changes)
:build
(let ((load-path-env (mapconcat 'identity load-path ":")))
(mapcar
(lambda (command)
(list "sh" "-c"
(format "EMACSLOADPATH=%s %s"
(shell-quote-argument load-path-env)
(shell-quote-argument command))))
'("./autogen.sh" "./configure" "make")))
:features (realgud))