From c1293495acb2364023f8bfa9321bd74bc6c3ed7c Mon Sep 17 00:00:00 2001 From: "Tom Breton (Tehom)" Date: Thu, 11 Nov 2010 21:24:55 -0500 Subject: [PATCH] New: do-elinstall.el, our install script --- do-elinstall.el | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 do-elinstall.el diff --git a/do-elinstall.el b/do-elinstall.el new file mode 100644 index 0000000..c0428c2 --- /dev/null +++ b/do-elinstall.el @@ -0,0 +1,54 @@ +;;;_ elinstall/do-elinstall.el --- Script to do elinstall installation + +;;;_. Headers +;;;_ , License +;; Copyright (C) 2010 Tom Breton (Tehom) + +;; Author: Tom Breton (Tehom) +;; Keywords: maint,convenience + +;; This file is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 2, or (at your option) +;; any later version. + +;; This file is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with GNU Emacs; see the file COPYING. If not, write to +;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, +;; Boston, MA 02111-1307, USA. + +;;;_ , Commentary: + +;; + + +;;;_ , Requires + +;;Itself. But it might not be loaded or known to load-path. +(let ((load-path '("./"))) + (require 'elinstall)) + +;;;_. Body + +(elinstall + "elinstall" + (elinstall-directory-true-name) + '(dir "./")) + +;;;_. Footers +;;;_ , Provides + +;;Nothing, this is a script. + +;;;_ * Local emacs vars. +;;;_ + Local variables: +;;;_ + mode: allout +;;;_ + End: + +;;;_ , End +;;; elinstall/do-elinstall.el ends here -- 2.11.4.GIT