summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 9cd6f8d7154e9859bbabd616b9a62fd2b74ce876 (plain)
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
47
48
49
50
51
52
53
#!/usr/bin/make -f
# -*- makefile -*-

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

# enable dpkg build flags
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk

export DPKG_GENSYMBOLS_CHECK_LEVEL=4

PYVERS=$(shell pyversions -vd) $(shell py3versions -vd)

CONFIGFLAGS=--disable-rpath --enable-gost --enable-gost-anyway --disable-ldns-config

%:
	dh $@ --with python2 --with autoreconf --with autotools-dev --with python3

override_dh_auto_configure:
	dh_auto_configure -- $(CONFIGFLAGS) --with-examples --with-drill
	for pyvers in $(PYVERS); do \
		PYTHON_VERSION=$$pyvers dh_auto_configure -B build/python-$$pyvers -- $(CONFIGFLAGS) --with-pyldns; \
		done

override_dh_auto_build:
	dh_auto_build
	for pyvers in $(PYVERS); do \
		dh_auto_build -B build/python-$$pyvers;\
		done

override_dh_auto_install:
	dh_auto_install
	for pyvers in $(PYVERS); do \
		dh_auto_install -B build/python-$$pyvers;\
		done

override_dh_auto_clean:
	dh_auto_clean
	rm -rf build/

override_dh_strip:
	dh_strip -O--dbgsym-migration='libldns1-dbg (<< 1.7.0~)'

override_dh_install:
	install -d -m 755 $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig/
	install -m 644 packaging/libldns.pc $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig/
	dh_install --fail-missing -X.la -X_ldns.a

override_dh_auto_test:
# tests in Makefile.in are not distributed
	: