File: INSTALL

package info (click to toggle)
authprogs 0.7.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 328 kB
  • sloc: python: 1,031; makefile: 15
file content (41 lines) | stat: -rw-r--r-- 955 bytes parent folder | download | duplicates (4)
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

INSTALLING
==========

Regardless if you have checked out the source tarball
or cloned the entire git repository, you should be able
to install authprogs in the standard setuptools-ian way:

        $ python3 setup.py test
        $ sudo python3 setup.py install


DEVELOPMENT
===========

Authprogs source can be found at its [github repository] 


BUILD REQUIREMENTS
------------------

In order to generate the man page from the `doc/authprogs.md`
file we require ronn, which can be found at [ronn]

Or it may be available in your distro already, for example

        $ sudo apt-get install ronn
   or
        $ sudo apt-get install ruby-ronn

In order to generate the html man page from `doc/authprogs.md`
we require the markdown module which can be installed via

        $ sudo pip3 install markdown

or it may be available from your distro already, for example

        $ sudo apt install python3-markdown


There should be no other dependencies.