1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
From: Nicholas D Steeves <nsteeves@gmail.com>
Date: Fri, 3 Nov 2017 19:15:12 -0400
Subject: Add Debian/Ubuntu/derivatives installation instructions
Forwarded: https://github.com/rnkn/fountain-mode/pull/73
Last-Update: 2021-10-16
---
README.md | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md
index fa3707b..e7f2547 100644
--- a/README.md
+++ b/README.md
@@ -68,8 +68,14 @@ while still allowing for a lot of flexibility.
Installation
------------
-The latest stable release of Fountain Mode is available via
-[MELPA-stable][1]. First, add MELPA-stable to your package archives:
+Users of Debian ≥10 and its derivatives (Ubuntu, Pop!_OS, etc. ≥18.04) may install Fountain Mode with the following command:
+
+ sudo apt install elpa-fountain-mode
+
+Alternatively, the latest stable release of Fountain Mode is available via
+[MELPA-stable][1]. If using this source, the Debian package should first be uninstalled.
+
+Then, add MELPA-stable to your package archives:
M-x customize-option RET package-archives RET
@@ -85,13 +91,8 @@ If you prefer the latest but perhaps unstable version, do the above
using [MELPA][2].
-Advanced Installation
----------------------
-
-Download the latest tagged release, move this file into your `load-path`
-and add to your `init.el` file:
-
- (require 'fountain-mode)
+Development
+-----------
If you wish to contribute to or alter Fountain Mode's code, clone the
repository into your load-path and require as above:
|