File: rules

package info (click to toggle)
bzrtp 4.4.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 964 kB
  • sloc: ansic: 9,509; makefile: 48; sh: 33
file content (23 lines) | stat: -rwxr-xr-x 702 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
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# Fix FTBFS with bzrtp 1.0.6 and GCC 8. The upstream fix currently
# does the same thing, see
# https://gitlab.linphone.org/BC/public/bzrtp/commit/e86b99fdc51c95f4d4997d7fdcfdfe0d1589ca92
export DEB_CFLAGS_MAINT_APPEND = -Wno-cast-function-type

%:
	dh $@ --buildsystem=cmake

# Upstream unconditionally sets CMAKE_INSTALL_RPATH. Make it ineffective by
# setting CMAKE_SKIP_RPATH
override_dh_auto_configure:
	dh_auto_configure -- -DCMAKE_SKIP_RPATH=ON -DENABLE_STATIC=no

override_dh_strip:
	dh_strip --dbgsym-migration='libbzrtp0-dbg (<< 1.0.6-1~)'