blob: 1d291e4fd917fc6d516ed6b7e92bbedfff4a8e6b (
plain)
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
|
#+title: create-license
This package aims at providing a convenient way of creating a license file for
your projects. It stores common known licenses in a specific directory on your
machine and allows you to quickly put them in your projects.
* Usage
First you have to initialize your license storage using =M-x
create-license-download-common=. To customize the downloaded licenses list, see
=create-license-common=. To interactively pull a license from the storage in
the current directory, run =M-x create-license=. The licenses are stored under
=create-license-directory=.
* Installation
** My Package Archive
I have my own package archive that you may use.
#+begin_src emacs-lisp
(add-to-list 'package-archives '("tr" . "https://tristanriehs.fr/elisp-packages/"))
#+end_src
** Manual
Get the sources at https://tristanriehs.fr/git/create-license, and load =create-license.el=.
#+begin_src emacs-lisp
(load "/path/to/create-license.el")
#+end_src
** [[https://github.com/radian-software/straight.el][Straight]]
#+begin_src emacs-lisp
(straight-use-package 'create-license
:repo "https://tristanriehs.fr/git/create-license.git")
#+end_src
|