File: rules

package info (click to toggle)
whizzytex 1.3.3-0.2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,932 kB
  • sloc: lisp: 3,605; sh: 1,621; ml: 366; makefile: 240
file content (42 lines) | stat: -rwxr-xr-x 1,280 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@

override_dh_auto_configure:
	cp $(CURDIR)/debian/Makefile.config $(CURDIR)/
	$(MAKE) config.force

override_dh_auto_build:
	dh_auto_build
	LC_ALL=C LANG=C $(MAKE) -C doc whizzytex.html whizzytex.info

override_dh_auto_install:
	dh_auto_install
	rm -f "$(CURDIR)/debian/whizzytex/usr/share/doc/whizzytex/COPYING" \
              "$(CURDIR)/debian/whizzytex/usr/share/doc/whizzytex/GPL" \
              "$(CURDIR)/debian/whizzytex/usr/share/doc/whizzytex/INSTALL"

override_dh_installexamples:
	dh_installexamples
	find "$(CURDIR)/debian/whizzytex" -name *~ -delete
	find "$(CURDIR)/debian/whizzytex" -name .cvsignore -delete
	rm "$(CURDIR)/debian/whizzytex/usr/share/doc/whizzytex/examples/mlpost/mlpostx.native"

override_dh_clean:
	dh_clean -Xexamples/*

override_dh_installinfo:
	dh_installinfo -v $(CURDIR)/doc/whizzytex.info*

override_dh_installchangelogs:
	dh_installchangelogs CHANGES

# eval this in emacs: (shell-command "cd ../ && debian/rules getfaq")
getfaq:
	-rm -f debian/FAQ-new.html
	wget http://cristal.inria.fr/whizzytex/FAQ.html -O debian/FAQ-new.html && \
	mv debian/FAQ-new.html debian/FAQ.html
	dch -a "updated FAQ from http://cristal.inria.fr/whizzytex/FAQ.html"