File: rules

package info (click to toggle)
pyblosxom 1.5.3-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,316 kB
  • sloc: python: 6,903; sh: 111; makefile: 73
file content (23 lines) | stat: -rwxr-xr-x 519 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
#!/usr/bin/make -f

%:
	dh $@ --with python2,sphinxdoc --buildsystem=python_distutils

override_dh_installdocs:
	python setup.py build_sphinx
	dh_installdocs build/sphinx/html

override_dh_sphinxdoc:
	dh_sphinxdoc
	$(RM) $(CURDIR)/debian/pyblosxom/usr/share/doc/pyblosxom/html/_sources/license.txt

override_dh_installchangelogs:
	dh_installchangelogs WHATSNEW

override_dh_auto_test:
	python setup.py test

override_dh_auto_clean:
	dh_auto_clean
	$(RM) -r $(CURDIR)/build/sphinx
	$(RM) -r $(CURDIR)/pyblosxom.egg-info