|
From: | Robert Weiner |
Subject: | Re: Subject: Call for testers for GNU Hyperbole 5.12, a large, useful Emacs package |
Date: | Wed, 15 Jun 2016 02:28:40 -0400 |
To download and install the Hyperbole package, add something like thefollowing lines to your .emacs file:
(require 'package)
(setq package-check-signature nil
package-enable-at-startup nil) ;; Prevent double loading of libraries
(add-to-list 'package-archives '("RSW-Packages" . "http://www.plasmas.biz/rswe/") t)
(package-initialize)
(unless (package-installed-p 'hyperbole)
(if (not (display-graphic-p))
;; Installation of Hyperbole requires a non-dumb terminal
;; instance of Emacs, i.e. under a window system.
(progn (message "(Hyperbole): Run Emacs under a window system to install Hyperbole")
(beep)
(sit-for 4))
(package-refresh-contents)
(package-install 'hyperbole)))
[Prev in Thread] | Current Thread | [Next in Thread] |