File: rules

package info (click to toggle)
telepathy-qt 0.9.8%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 12,964 kB
  • sloc: cpp: 74,811; xml: 34,307; ansic: 20,740; python: 4,154; sh: 118; makefile: 15
file content (24 lines) | stat: -rwxr-xr-x 573 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
#!/usr/bin/make -f

CMAKE_OPTS := -DDISABLE_WERROR=ON \
              -DCMAKE_BUILD_TYPE=RelWithDebInfo \
              -DENABLE_TESTS=NO \
              -DENABLE_EXAMPLES=NO \
	      -DFORCE_STATIC_SERVICE_LIBRARY=YES


%:
	dh $@ --with pkgkde_symbolshelper

override_dh_auto_configure:
	dh_auto_configure -- $(CMAKE_OPTS)

# Do not run tests, as they fall into race conditions sometimes
override_dh_auto_test:

override_dh_strip:
	dh_strip --dbgsym-migration='libtelepathy-qt5-dbg (<< 0.9.7~)'

override_dh_auto_clean:
	dh_auto_clean
	find . -name '*.pyc' -exec rm {} \;