mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
84efbda925
The main goal here is to be able to install the notmuch-mutt script with an absolute shebang. I have tried to make the notmuch-mutt Makefile use configure information from notmuch if available, but make suitable guesses if not.
25 lines
637 B
Makefile
25 lines
637 B
Makefile
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
|
|
sed "1s|^#!.*|#! $(PERL_ABSOLUTE)|" < $(NAME) > $(DESTDIR)$(prefix)/bin/$(NAME)
|
|
chmod 755 $(DESTDIR)$(prefix)/bin/$(NAME)
|
|
install -D -m 644 $(NAME).1 $(DESTDIR)$(mandir)/man1/$(NAME).1
|
|
install -D -m 644 $(NAME).rc $(DESTDIR)$(sysconfdir)/Muttrc.d/$(NAME).rc
|
|
|
|
clean:
|
|
rm -f notmuch-mutt.1 README.html
|