notmuch/contrib/notmuch-mutt/Makefile

26 lines
670 B
Makefile
Raw Normal View History

NAME = notmuch-mutt
-include ../../Makefile.config
PERL_ABSOLUTE ?= $(shell command -v perl 2>/dev/null)
prefix ?= /usr/local
sysconfdir ?= ${prefix}/etc
mandir ?= ${prefix}/share/man
all: $(NAME) $(NAME).1
$(NAME).1: $(NAME)
pod2man $< > $@
README.html: README
markdown $< > $@
install: all
mkdir -p $(DESTDIR)$(prefix)/bin $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(sysconfdir)/Muttrc.d
sed "1s|^#!.*|#! $(PERL_ABSOLUTE)|" < $(NAME) > $(DESTDIR)$(prefix)/bin/$(NAME)
chmod 755 $(DESTDIR)$(prefix)/bin/$(NAME)
install -m 644 $(NAME).1 $(DESTDIR)$(mandir)/man1/
install -m 644 $(NAME).rc $(DESTDIR)$(sysconfdir)/Muttrc.d/
clean:
rm -f notmuch-mutt.1 README.html