Skip to content

Commit 69f1450

Browse files
committed
- [X] Update documentation regarding installation steps
1 parent c55c27e commit 69f1450

File tree

2 files changed

+58
-4
lines changed

2 files changed

+58
-4
lines changed

README.org

Lines changed: 55 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,68 @@ How about now?
3232

3333
* Install
3434

35-
As soon as something is working, I intend to release on melpa/melpa-stable/marmalade.
35+
Many different installation possible:
36+
37+
** Git
38+
39+
Clone the repository, and:
3640

37-
For the moment, clone the repository, and:
3841
#+begin_src sh
3942
M-x package-install-file RET /path/to/emacs-psci/psci.el
4043
#+end_src
4144

4245
*Note* Provided you already use melpa, the needed deps should be installed.
4346

47+
** Package repositories
48+
*** Melpa
49+
50+
[[http://melpa.org/#/getting-started][Their good documentation:]]
51+
52+
#+begin_src emacs-lisp
53+
(require 'package)
54+
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages") t)
55+
(package-initialize)
56+
#+end_src
57+
58+
*Note* Providing [[https://github.com/milkypostman/melpa/pull/2124][PR]] is merged.
59+
60+
*** Melpa-stable
61+
62+
[[http://stable.melpa.org/#/getting-started][Their good documentation:]]
63+
64+
#+begin_src emacs-lisp
65+
(require 'package)
66+
(add-to-list 'package-archives '("melpa-stable" . "http://stable.melpa.org/packages/") t
67+
(package-initialize)
68+
#+end_src
69+
70+
*** Marmalade
71+
72+
[[https://marmalade-repo.org/#download][Their good documentation:]]
73+
74+
#+begin_src emacs-lisp
75+
(require 'package)
76+
(add-to-list 'package-archives '("marmalade" . "https://marmalade-repo.org/packages/"))
77+
(package-initialize)
78+
#+end_src
79+
80+
*** Install
81+
82+
With melpa, melpa-stable, marmalade:
83+
84+
#+begin_src sh
85+
M-x package-install RET psci RET
86+
#+end_src
87+
88+
** el-get
89+
90+
#+begin_src sh
91+
M-x el-get-install RET psci RET
92+
#+end_src
93+
94+
*Note* Providing [[https://github.com/dimitri/el-get/pull/1973][PR]] is merged.
95+
96+
* Setup
4497
** Start
4598

4699
#+begin_src sh

todo.org

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ CLOSED: [2014-10-29 Wed 18:03]
2020
- [X] Improve the modules (re)loading by removing existing files (.psci_modules/node_modules folder)
2121
- [X] Improve the module (re)loading by removing existings files (inside .psci_modules folder)
2222
- [X] Create melpa recipe https://github.com/ardumont/melpa/blob/add-new-recipe-psci/recipes/psci
23-
* IN-PROGRESS 0.0.3 [75%]
23+
* IN-PROGRESS 0.0.3 [80%]
2424
- [X] Update version
2525
- [X] Add to marmalade - https://marmalade-repo.org/packages/psci
2626
- [X] Add to el-get - https://github.com/ardumont/el-get/blob/add-psci-recipe/recipes/psci.rcp
27-
- [ ] Update documentation on installation step
27+
- [X] Update documentation regarding installation steps
28+
- [ ] Update documentation regarding how to use it

0 commit comments

Comments
 (0)