File: rules

package info (click to toggle)
gumbo-parser 0.13.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,900 kB
  • sloc: ansic: 30,496; cpp: 3,836; python: 890; makefile: 93; sh: 15
file content (23 lines) | stat: -rwxr-xr-x 657 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

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@ --with python3 --buildsystem=autoconf

override_dh_auto_clean:
	dh_auto_clean
	$(RM) -rfv build/
	$(RM) -rfv docs/
	$(RM) -rfv python/gumbo.egg-info/
	$(RM) -rfv Makefile.in aclocal.m4 compile config.guess config.sub \
	           configure depcomp install-sh ltmain.sh m4/ missing test-driver

override_dh_auto_install:
	dh_auto_install
	python3 setup.py install --root=$(CURDIR)/debian/python3-gumbo --install-layout=deb
	# Remove tests
	find $(CURDIR)/debian/python3-gumbo -name '*_test.py' | xargs $(RM) -rfv

override_dh_installchangelogs:
	dh_installchangelogs CHANGES.md