File: rules

package info (click to toggle)
embark 1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 644 kB
  • sloc: lisp: 4,771; makefile: 10
file content (14 lines) | stat: -rwxr-xr-x 427 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f

%:
	dh $@ --with elpa

override_dh_auto_build:
	test -f embark.texi.orig || cp embark.texi embark.texi.orig
	emacs -q --batch -l htmlize README.org \
	--eval '(setq user-full-name "Omar AntolĂ­n Camarena")' \
	-f org-texinfo-export-to-info -f org-html-export-to-html

override_dh_auto_clean:
	rm -f embark.info embark.html embark.html.gz
	test -f embark.texi.orig && mv embark.texi.orig embark.texi || true