File: rules

package info (click to toggle)
cli11 2.4.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,120 kB
  • sloc: cpp: 23,299; python: 129; sh: 64; makefile: 11; ruby: 7
file content (19 lines) | stat: -rwxr-xr-x 540 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

override_dh_auto_build:
	dh_auto_build
	# patch auto-generated doxyfile to make build reproducible
	sed -i -e 's:STRIP_FROM_PATH[[:space:]]*=:STRIP_FROM_PATH = ..:g' obj-$(DEB_BUILD_GNU_TYPE)/docs/Doxyfile.docs
	dh_auto_build -- docs

override_dh_auto_install:
	dh_auto_install
	mv obj-$(DEB_BUILD_GNU_TYPE)/docs/html debian/tmp/html

# OptionalTest is failing. It should be a empty test looking at the code
# but test suite is making it to fail
override_dh_auto_test:
	dh_auto_test -- ARGS="-E OptionalTest"

%:
	dh $@