mirror of https://github.com/caronc/apprise
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.5 KiB
32 lines
1.5 KiB
6 years ago
|
## Packaging
|
||
|
This directory contains any supporting files to grant usage of apprise in various distributions.
|
||
|
|
||
|
### RPM Based Packages
|
||
|
* [EPEL](https://fedoraproject.org/wiki/EPEL) based distributions are only supported if they are of v7 or higher. This includes:
|
||
|
* Red Hat 7.x (or higher)
|
||
|
* CentOS 7.x (or higher)
|
||
|
* Scientific OS 7.x (or higher)
|
||
|
* Oracle Linux 7.x (or higher)
|
||
|
|
||
|
Provided you are connected to the [EPEL repositories](https://fedoraproject.org/wiki/EPEL), the following will just work for you:
|
||
|
```bash
|
||
|
# python2-apprise: contains all you need to develop with apprise
|
||
|
# apprise: provides the 'apprise' administrative tool
|
||
|
yum install python2-apprise apprise
|
||
|
```
|
||
|
|
||
|
**Fedora** packaging is available right out of the box; the following will get you going on any distribution (v29 or higher):
|
||
|
```bash
|
||
|
# python3-apprise: contains all you need to develop with apprise
|
||
|
# apprise: provides the 'apprise' administrative tool
|
||
|
dnf install python3-apprise apprise
|
||
|
```
|
||
|
|
||
|
Let me know if you'd like to help me host on more platforms or can offer to do it yourself!
|
||
|
|
||
|
## Man Pages Information
|
||
|
The man page were generated using [Ronn](http://github.com/rtomayko/ronn/tree/0.7.3).
|
||
|
- Content is directly written to entries in the **man/\*.md** files _following the
|
||
|
[the format structure available on the Ronn site](https://github.com/rtomayko/ronn/blob/master/man/ronn.1.ronn)_.
|
||
|
- Then the following is executed `ronn --roff man/apprise.md` to produce the man/apprise.1 which is used by distributions.
|