Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://gitlab.com/dacav/crossbow
The minimalist feed aggregator
https://gitlab.com/dacav/crossbow
atom feed rss unix
Last synced: 17 days ago
JSON representation
The minimalist feed aggregator
- Host: gitlab.com
- URL: https://gitlab.com/dacav/crossbow
- Owner: dacav
- License: gpl-3.0
- Created: 2019-08-09T10:58:21.421Z (over 5 years ago)
- Default Branch: master
- Last Synced: 2024-07-30T20:58:26.220Z (3 months ago)
- Topics: atom, feed, rss, unix
- Stars: 18
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
# Crossbow - the minimalist feed aggregator
Crossbow is a simple but powerful RSS/Atom feed
aggregator- Designed to be invoked from cron(8) to fetch updates
periodically.- It can easily convert feeds to email.
- Entries can be handled with an external program,
allowing for example, to automatically download
and parse content, without user interaction.- Minimal set of dependencies.
- Documented thoroughly.
## Resources
- Home page:
- Official repo:
- Mirror repo (gitlab):
- Latest release:
- Releases feed:
## How to install:
1. Configure
cmake [opts] -S . -B ./build
Supported build options:
- `-D STRICT=ON`: enable strict build (`-Werror`, etc...)
- `-D UT_SAN=ON`: enable sanitizers for unit tests.
- `-D LIB_SAN=ON`: enable sanitizers for the library2. Build
cmake --build ./build
3. Run unit tests
ctest --test-dir ./build
4. Install:
cmake --install ./build
Please refer to the CMake documentation to learn about additional options.
### Pitfalls
The CMake configuration relies on versioning information which is only available
to a cloned Git repository, or when building from a dist tarball (generated by
the `contrib/dist-tarball` script.If versioning information is not available, the package configuration step will
fail with the following error:> Could not determine version, see project README for more info.
This is the case if the tarball was built with `git-archive(1)`, or
downloaded from a release page on GitLab.
Please download a release tarball from the release page instead.