{{>toc}} h1. Install for Fedora/Rocky8/CentOS8/RHEL8 (unfinished doc) h2. From the ZIP h3. Download the archive "rsstats-0.0.1-linux.tar.gz":https://packages.cerbelle.net/rsstats/0.0.1/rsstats-0.0.1-linux.tar.gz h3. Extract the archive (TODO) h2. Use the RPM package h3. Download the package file "rsstats-0.0.1-1.el6.x86_64.rpm":https://packages.cerbelle.net/rsstats/0.0.1/rsstats-0.0.1-1.el6.x86_64.rpm h3. Install the RPM (TODO) h2. Use the AppImage h3. Download the file "rsstats-0.0.1-linux.AppImage":https://packages.cerbelle.net/rsstats/0.0.1/rsstats-0.0.1-linux.AppImage h3. Make the file executable

chmod +x rsstats-0.0.1-linux.AppImage
h2. Build from the sources (Update with RHEL commands) h3. Install the mandatory build dependencies

apt-get install build-essential libssl-dev pkg-config
h3. Download the sources "rsstats-0.0.1.tar.gz":https://packages.cerbelle.net/rsstats/0.0.1/rsstats-0.0.1.tar.gz h3. Extract the archive

tar xvzf rsstats-0.0.1.tar.gz
cd rsstats-0.0.1
h3. Prepare the build The default installation folder is @/usr/local@. You can add the standard @--prefix@ argument to change the default installation folder to another location, such as @--prefix=/opt@, for example.

./configure --disable-doxygen
h3. Build & Check

make clean all check
h3. Install & Check You can install with the provided system

make install installcheck
or you can build the DEB packages by yourself (you(ll need to install @debuild@ from the _dev-scripts_ package or @dpkgbuildpackage@ from the _dpkg-dev_ package) and follow the previous steps to use them :

make debian-deb
h3. Remove the build folder (optional) If you installed _rsstats_ in the system's root (@/@), You should keep the build dir because you can use @make uninstall@ to cleanly uninstall each installed file. If you installed _rsstats_ in its own folder, you'll be able to simply delete this folder and should not need the build dir anymore.

cd ..
rm -Rf rsstats-0.0.1
h3. Remove carefully the build dependencies (optional) You can remove the build dependencies if they were not already installed when you requested them. Otherwise, another application is probably depending on them and you should probably not remove them. I suggest to keep them, but if you really want to remove them, please do only remove the dependencies which were not already installed before the first step.

apt-get purge libssl-dev
apt-get purge build-essential pkg-config
If you remove @libssl-dev@, you have to ensure that @libssl3@ is installed (I hope that you already had it on your system).

apt-get install libssl3
h1. Usage This tool is a commandline tool and the usage is the same in all the supported operating systems. [[Usage|Please continue with the usage documentation]].