From 80051ba36998ef0fdbd111d9cdc26c3b955c93ef Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 18 Dec 2012 15:16:40 +0100 Subject: further improve debian packaging: build docs --- debian/rules | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 571f404a..a2080319 100755 --- a/debian/rules +++ b/debian/rules @@ -3,5 +3,19 @@ # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 +ASCIIDOC_PARAMS = "-a numbered -a data-uri -a iconsdir=/etc/asciidoc/images/icons -a scriptsdir=/etc/asciidoc/javascripts -b html5 -a toc -a toclevels=4 -a icons -a stylesheet=$(shell pwd)/theme/debian-asciidoc.css" + %: - dh $@ + dh $@ + +override_dh_auto_build: + asciidoc $(ASCIIDOC_PARAMS) -o about.html README + asciidoc $(ASCIIDOC_PARAMS) -o todo.html TODO + asciidoc $(ASCIIDOC_PARAMS) -o setup.html INSTALL + mv *html userContent/ + dh_auto_build + +override_dh_auto_clean: + rm -vf userContent/*.html + dh_auto_clean + -- cgit v1.2.3-54-g00ecf