From 45ac760c6da6cd86660ceac632525593477299c8 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Sat, 11 Jul 2015 22:40:26 +0200 Subject: minimal conversion to perl / debhelper lib It turns out this isn't $MESSY_CONFLICT_ZONE, there are rules about writing debhelper extensions. This is mainly cargo culting from dh_installdocs. - compute destination directory, support multiple binary packages. - add debian/elpa file, test the "standard" codepath. Still not very standard because it's a single file elpa package. --- dh-elpa.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dh-elpa.el') diff --git a/dh-elpa.el b/dh-elpa.el index ed70822..cff7009 100644 --- a/dh-elpa.el +++ b/dh-elpa.el @@ -64,8 +64,8 @@ Downloads and installs required packages as needed." (defun dhelpa-batch-install-file () "install first command line argument (an emacs lisp file) into second command line argument" - (let ((el-file (car command-line-args-left)) - (dest (cadr command-line-args-left))) + (let ((dest (car command-line-args-left)) + (el-file (cadr command-line-args-left))) (with-temp-buffer (insert-file-contents-literally el-file) (dhelpa-install-from-buffer dest)))) -- cgit v1.2.3