File: rules

package info (click to toggle)
dtk6core 6.0.31-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,696 kB
  • sloc: cpp: 20,987; ansic: 183; python: 68; xml: 58; makefile: 26; sh: 15
file content (46 lines) | stat: -rwxr-xr-x 1,049 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
43
44
45
46
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1

# see FEATURE AREAS in dpkg-buildflags(1)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all optimize=-lto

# Explicitly enable hardening
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk

include /usr/share/dpkg/architecture.mk

# Retrieve version info
include /usr/share/dpkg/default.mk

VERSION = $(DEB_VERSION_UPSTREAM)

ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
  BUILD_DOC_OPTION := ON
else
  BUILD_DOC_OPTION := OFF
endif


%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- \
	    -DBUILD_EXAMPLES=OFF \
	    -DBUILD_DOCS=$(BUILD_DOC_OPTION) \
	    -DBUILD_WITH_SYSTEMD=ON \
	    -DDTK_VERSION=$(VERSION) \
            $(NULL)

override_dh_installchangelogs:
	dh_installchangelogs -k CHANGELOG.md


ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
execute_after_dh_install:
	# Manually install .qch file when documentation is being built
	dh_install debian/tmp/usr/share/qt6/doc/dtkcore.qch /usr/share/qt6/doc/
endif