Another RSS to Mastodon bot.
|
||
---|---|---|
cmake | ||
man | ||
src | ||
.drone.yml | ||
.editorconfig | ||
.gitignore | ||
CMakeLists.txt | ||
CODE_OF_CONDUCT.adoc | ||
CONTRIBUTING.adoc | ||
de.tastytea.mastorss.desktop.in | ||
LICENSE | ||
README.adoc | ||
watchwords.json |
mastorss
mastorss reads RSS feeds and posts the items via the Mastodon API. Does not support Atom at the moment.
Important
|
The branch master has been renamed to main . If you have cloned this repo
before 2019-12-28, please update your git settings accordingly.
|
Table of Contents
Install
Dependencies
-
Tested OS: Linux
-
C++ compiler (tested: gcc 7/8/9)
-
cmake (at least: 3.9)
-
boost (at least: 1.62)
-
mastodonpp (at least: 0.4)
-
jsoncpp (at least: 1.7)
-
restclient-cpp (at least: 0.5.1)
Get sourcecode
Release
Download the current release at schlomp.space.
Development version
git clone https://schlomp.space/tastytea/mastorss.git
Compile
mkdir build
cd build/
cmake ..
cmake --build .
CMake options:
-
-DWITH_MAN=NO
to not compile the manpage (default isYES
). -
-DWITH_DESKTOP=YES
to build the .desktop file (default isNO
).
Install with make install
.