unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 72e2a18a81136c0b525c667b83908710cf99ce2f 1550 bytes (raw)
name: man/Makefile.local 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
 
# -*- Makefile -*-

dir := man

# this variable seems to be needed to prevent lazy evaluation causing
# problems with $(dir) changing values.
MAIN_PAGE := $(dir)/man1/notmuch.1

MAN1 := \
	$(MAIN_PAGE) \
	$(dir)/man1/notmuch-config.1 \
	$(dir)/man1/notmuch-count.1 \
	$(dir)/man1/notmuch-dump.1 \
	$(dir)/man1/notmuch-restore.1 \
	$(dir)/man1/notmuch-new.1 \
	$(dir)/man1/notmuch-reply.1 \
	$(dir)/man1/notmuch-search.1 \
	$(dir)/man1/notmuch-show.1 \
	$(dir)/man1/notmuch-tag.1

MAN5 := $(dir)/man5/notmuch-hooks.5
MAN7 := $(dir)/man7/notmuch-search-terms.7

MAN1_GZ := $(addsuffix .gz,$(MAN1))
MAN5_GZ := $(addsuffix .gz,$(MAN5))
MAN7_GZ := $(addsuffix .gz,$(MAN7))

MAN_SOURCE := $(MAN1) $(MAN5) $(MAN7)
MAN_BACKUP := $(addsuffix .bak,$(MAN_SOURCE))
COMPRESSED_MAN := $(MAN1_GZ) $(MAN5_GZ) $(MAN7_GZ)

%.gz: %
	gzip --stdout $^ > $@

.PHONY: install-man update-man-versions

install-man: $(COMPRESSED_MAN)
	mkdir -p "$(DESTDIR)$(mandir)/man1"
	mkdir -p "$(DESTDIR)$(mandir)/man5"
	mkdir -p "$(DESTDIR)$(mandir)/man7"
	install -m0644 $(MAN1_GZ) $(DESTDIR)/$(mandir)/man1
	install -m0644 $(MAN5_GZ) $(DESTDIR)/$(mandir)/man5
	install -m0644 $(MAN7_GZ) $(DESTDIR)/$(mandir)/man7
	cd $(DESTDIR)/$(mandir)/man1 && ln -sf notmuch.1.gz notmuch-setup.1.gz

update-man-versions: $(MAN_SOURCE)
	for file in $(MAN_SOURCE); do \
	    cp $$file $$file.bak ; \
	    sed "s/^.TH NOTMUCH\([^[:blank:]]*\) \([1-9]\) .*$$/.TH NOTMUCH\1 \2 ${DATE} \"Notmuch ${VERSION}\"/" \
	        < $$file.bak > $$file; \
	done

CLEAN := $(CLEAN) $(COMPRESSED_MAN) $(MAN_BACKUP)

debug log:

solving 72e2a18 ...
found 72e2a18 in https://yhetil.org/notmuch.git/

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).