diff options
author | Koni Marti <koni.marti@gmail.com> | 2022-05-24 07:36:05 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-05-31 14:32:00 +0200 |
commit | 527f602f36a001858cc95427899210984e4e71b9 (patch) | |
tree | a0f7c32ddf8520a0a2d5105e6715b5ef5c8adfbc /Makefile | |
parent | a253e89bdae6ecc101eae190a2766a7eb1e9eb33 (diff) | |
download | aerc-527f602f36a001858cc95427899210984e4e71b9.tar.gz |
filters: awk filter to parse text/calendar
Implement a filter to read text/calendar (ics) data with awk.
Parses multiple events and shows the date recurrence if
available. Awk alternative to the python filter.
Signed-off-by: Koni Marti <koni.marti@gmail.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -106,6 +106,7 @@ install: $(DOCS) aerc install -m644 config/accounts.conf $(DESTDIR)$(SHAREDIR)/accounts.conf install -m644 config/aerc.conf $(DESTDIR)$(SHAREDIR)/aerc.conf install -m644 config/binds.conf $(DESTDIR)$(SHAREDIR)/binds.conf + install -m755 filters/calendar $(DESTDIR)$(SHAREDIR)/filters/calendar install -m755 filters/colorize $(DESTDIR)$(SHAREDIR)/filters/colorize install -m755 filters/hldiff $(DESTDIR)$(SHAREDIR)/filters/hldiff install -m755 filters/html $(DESTDIR)$(SHAREDIR)/filters/html |