summaryrefslogtreecommitdiff
path: root/python-freeipa/debian/rules
blob: 81201ef94d6d41c00d5dbf622f5029bdd79b6faf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
export PYBUILD_NAME=freeipa
export PYBUILD_DISABLE=test

build3vers := $(shell py3versions -sv)

%:
	dh $@ --with python3 --buildsystem pybuild

override_dh_auto_configure:
	dh_auto_configure

override_dh_auto_clean:
	-rm -rf src/python_freeipa.egg-info/
	dh_auto_clean
bgstack15