#!/usr/bin/make -f # resolve DEB_VERSION_UPSTREAM include /usr/share/dpkg/pkg-info.mk export DEB_BUILD_MAINT_OPTIONS = hardening=+all export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic export DEB_CXXFLAGS_MAINT_APPEND = -Wall -pedantic # trust upstream optimization level unless explicitly disabled ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) export DEB_CFLAGS_MAINT_STRIP=-O2 export DEB_CXXFLAGS_MAINT_STRIP=-O2 endif # generate documentation unless nodoc requested DOCS_stem = README $(basename $(wildcard doc/*.md)) ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS))) DOCS = $(DOCS_stem:=.html) $(DOCS_stem:=.txt) CHANGELOGS = Changelog.html Changelog.txt MANPAGES = settle.1 endif # generate manual pages from output of clap-based Rust binary # arguments: 1:MANFILEPATH 2:COMMANDPATH 3:SUBCOMMAND(S) _help2man = \ $(eval suffix = $(lastword $(subst ., ,$(1))))\ $(eval stem = $(patsubst %.$(suffix),%,$(1)))\ help2man --section $(suffix) --no-info \ --version-string='$(DEB_VERSION_UPSTREAM)' \ --name $(shell $(2) $(3) --help | head --lines=1 | xargs -0 shell-quote --) \ --output '$(stem)$(if $(3),-$(subst $() ,-,$(strip $(3)))).$(suffix)' \ '$(2)$(if $(3), $(3))' \ || { $(2) $(3) --help; false; } %: dh $@ %.html: %.md cmark-gfm $< > $@ %.txt: %.md cmark-gfm --to plaintext $< > $@ execute_after_dh_auto_build: $(DOCS) $(CHANGELOGS) execute_after_dh_auto_install: $(MANPAGES) mkdir --parents debian/build debian/settle/usr/bin/settle compl bash > debian/build/bash-completion debian/settle/usr/bin/settle compl zsh > debian/build/_settle override_dh_installdocs: dh_installdocs --all -- $(DOCS) override_dh_installchangelogs: dh_installchangelogs -- $(CHANGELOGS) # build manpages $(MANPAGES): %.1: debian/settle/usr/bin/% $(call _help2man,$@,$<) set -e; $(foreach x,sync query ls,\ $(call _help2man,$@,$<,$x);)