File: rules

package info (click to toggle)
dspdfviewer 1.15.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 752 kB
  • ctags: 273
  • sloc: cpp: 2,294; makefile: 12
file content (26 lines) | stat: -rwxr-xr-x 753 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
20
21
22
23
24
25
26
#!/usr/bin/make -f

# Enable build hardening
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
DPKG_EXPORT_BUILDFLAGS=1
include /usr/share/dpkg/buildflags.mk


# provide debian version number to the build system
#
# Rationale: dspdfviewer --version embeds the information that this
# is from the debian package. This is useful when users go
# directly to the github-issue-tracker instead of using reportbug.

override_dh_auto_configure:
	dh_auto_configure -- \
		-DDSPDFVIEWER_VERSION=$(shell dpkg-parsechangelog --show-field Version) \
		-DUsePrerenderedPDF=ON

# Run tests inside xvfb, like upstream does in _travis/test script.
override_dh_auto_test:
	xvfb-run -a -s '-screen 0 1920x1080x24 -screen 1 1920x1200x24' \
		dh_auto_test

%:
	dh $@ --parallel