rsstats-0.0.1-1.el6.x86_64.rpm
chmod +x rsstats-0.0.1-linux.AppImage
apt-get install build-essential libssl-dev pkg-config
tar xvzf rsstats-0.0.1.tar.gz
cd rsstats-0.0.1
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
make clean all 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
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
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
This tool is a commandline tool and the usage is the same in all the supported operating systems. Please continue with the usage documentation.