File tree Expand file tree Collapse file tree 2 files changed +58
-4
lines changed Expand file tree Collapse file tree 2 files changed +58
-4
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,68 @@ How about now?
32
32
33
33
* Install
34
34
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:
36
40
37
- For the moment, clone the repository, and:
38
41
#+begin_src sh
39
42
M-x package-install-file RET /path/to/emacs-psci/psci.el
40
43
#+end_src
41
44
42
45
*Note* Provided you already use melpa, the needed deps should be installed.
43
46
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
44
97
** Start
45
98
46
99
#+begin_src sh
Original file line number Diff line number Diff line change @@ -20,8 +20,9 @@ CLOSED: [2014-10-29 Wed 18:03]
20
20
- [X] Improve the modules (re)loading by removing existing files (.psci_modules/node_modules folder)
21
21
- [X] Improve the module (re)loading by removing existings files (inside .psci_modules folder)
22
22
- [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 %]
24
24
- [X] Update version
25
25
- [X] Add to marmalade - https://marmalade-repo.org/packages/psci
26
26
- [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
You can’t perform that action at this time.
0 commit comments