Another RSS to Mastodon bot.
Vai al file
tastytea 87760bba2d
continuous-integration/drone/push Build is passing Dettagli
Print error messages from servers in debug output.
2021-08-18 18:36:44 +02:00
cmake Rewrite root CMake recipe. 2019-12-16 15:22:54 +01:00
completions Install Zsh completion. 2020-12-03 21:05:00 +01:00
man Fix documentation of the “fixes” config option. 2021-01-18 23:48:03 +01:00
src Print error messages from servers in debug output. 2021-08-18 18:36:44 +02:00
.drone.yml Update CI recipe: Remove restclient-cpp, re-enable Ubuntu bionic. 2020-11-21 22:36:43 +01:00
.editorconfig Add EditorConfig. 2019-12-16 01:06:59 +01:00
.gitignore initial commit 2018-01-26 02:33:58 +01:00
CMakeLists.txt Version bump 0.13.1. 2020-12-15 10:08:27 +01:00
CODE_OF_CONDUCT.adoc COC: Improve punctuation. 2019-12-29 05:44:52 +01:00
CONTRIBUTING.adoc Add Code Of Conduct. 2019-12-16 01:04:14 +01:00
LICENSE initial commit 2018-01-26 02:33:58 +01:00
README.adoc Move usage information above install instructions. 2021-05-17 23:35:10 +02:00
watchwords.json more filtering 2018-02-01 12:03:16 +01:00

README.adoc

mastorss

mastorss reads RSS feeds and posts the items via the Mastodon API. Does not support Atom at the moment.

Table of Contents

Usage

See manpage.

Install

Packaging status

Gentoo

eselect repository enable guru
echo 'net-misc/mastorss' >> /etc/portage/package.accept_keywords/mastorss
emaint sync -r guru
emerge -a net-misc/mastorss

Arch

The git-version is available via the AUR: https://aur.archlinux.org/packages/mastorss-git/.

From source

Dependencies

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:
  • -DCMAKE_BUILD_TYPE=Debug Debug build.

  • -DWITH_MAN=NO Don’t install manpage.

  • -DWITH_COMPLETIONS=NO Don’t install completions.

  • -DZSH_COMPLETION_DIR Change installation directory for Zsh completions.

Install with make install.