File: rules

package info (click to toggle)
taxy-el 0.10%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 600 kB
  • sloc: lisp: 990; makefile: 11
file content (15 lines) | stat: -rwxr-xr-x 367 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f

%:
	dh $@ --with elpa

override_dh_auto_build:
	test -f taxy.info.orig || mv taxy.info taxy.info.orig
	emacs -q --batch -l ox-texinfo \
		--eval '(find-file "README.org")' \
		--eval '(org-texinfo-export-to-info)'
	mv README.info taxy.info

override_dh_auto_clean:
	rm -f README.texi
	test -f taxy.info.orig && mv taxy.info.orig taxy.info || true