diff options
author | Bence Ferdinandy <bence@ferdinandy.com> | 2022-12-12 12:53:14 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-12-14 11:24:49 +0100 |
commit | fec207e92270f8ad176b85f43c46bc2926e1cd6c (patch) | |
tree | d2cfd071b5f09b448a15cec784e5c0bf91a7fc0e /Makefile | |
parent | d48522266319828f55baab6de39222de17157d6b (diff) | |
download | aerc-fec207e92270f8ad176b85f43c46bc2926e1cd6c.tar.gz |
stylesets: install styles with aerc
Install styles along with aerc. Include stylesets from the wiki and
Robin's pink/blue.
Signed-off-by: Bence Ferdinandy <bence@ferdinandy.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -138,7 +138,11 @@ install: $(DOCS) aerc wrap install -m644 templates/new_message $(DESTDIR)$(SHAREDIR)/templates/new_message install -m644 templates/quoted_reply $(DESTDIR)$(SHAREDIR)/templates/quoted_reply install -m644 templates/forward_as_body $(DESTDIR)$(SHAREDIR)/templates/forward_as_body - install -m644 config/default_styleset $(DESTDIR)$(SHAREDIR)/stylesets/default + install -m644 stylesets/default $(DESTDIR)$(SHAREDIR)/stylesets/default + install -m644 stylesets/dracula $(DESTDIR)$(SHAREDIR)/stylesets/dracula + install -m644 stylesets/nord $(DESTDIR)$(SHAREDIR)/stylesets/nord + install -m644 stylesets/pink $(DESTDIR)$(SHAREDIR)/stylesets/pink + install -m644 stylesets/blue $(DESTDIR)$(SHAREDIR)/stylesets/blue install -m644 contrib/aerc.desktop $(DESTDIR)$(PREFIX)/share/applications/aerc.desktop .PHONY: checkinstall |