blob: e0045621a8517afb01f96c69597dd529fcdfb9da (
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
|
#!/usr/bin/make -f
ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS)))
export DH_VERBOSE=1
endif
export PYBUILD_NAME = nftables
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
include /usr/share/dpkg/architecture.mk
include /usr/share/dpkg/pkg-info.mk
pybuild_pkg := python3-$(PYBUILD_NAME)
pybuild_opts := --buildsystem=pybuild -- --dir $(CURDIR)/py
%:
dh $@ --with python3
override_dh_auto_clean:
dh_auto_clean -N$(pybuild_pkg)
dh_auto_clean -p$(pybuild_pkg) $(pybuild_opts)
override_dh_auto_configure:
dh_auto_configure -N$(pybuild_pkg) -- \
--with-xtables \
--with-json \
--with-python-bin=/usr/bin/python3 \
--with-cli=editline \
--
dh_auto_configure -p$(pybuild_pkg) $(pybuild_opts)
override_dh_auto_build:
dh_auto_build -N$(pybuild_pkg)
dh_auto_build -p$(pybuild_pkg) $(pybuild_opts)
override_dh_auto_install:
dh_auto_install -N$(pybuild_pkg)
dh_auto_install -p$(pybuild_pkg) $(pybuild_opts)
execute_after_dh_fixperms:
chmod a+x debian/nftables/etc/nftables.conf
override_dh_installsystemd:
dh_installsystemd --no-enable --no-start --restart-after-upgrade
override_dh_installexamples:
dh_installexamples -XMakefile
|