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
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
PACKAGE = sgml-base-doc
PKG_DOCS = sgml_layout.html sgml_layout.pdf sgml_layout.txt
# Ensure reproducible date
export DEBIANDOC_DATE = $(shell date --utc --date=@$(SOURCE_DATE_EPOCH) '+%Y-%m-%d')
.SUFFIXES: .html .pdf .sgml .txt
.sgml.html:
debiandoc2html $<
.sgml.pdf:
debiandoc2latexpdf -p letter $^
.sgml.txt:
debiandoc2text $^
override_dh_auto_test: sgml_layout.sgml
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
onsgmls -wall -E20 -gues $<
endif
override_dh_auto_build: $(PKG_DOCS)
%:
dh $@
override_dh_clean:
$(RM) -r $(PKG_DOCS) sgml_layout.tpt
dh_clean
|