mirror of
https://github.com/CumulusNetworks/ifupdown2.git
synced 2024-05-06 15:54:50 +00:00
59dad2ca80
These include changes that were done to move ifupdown2 to use pybuild and some debian policy fixes Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
17 lines
411 B
Makefile
Executable File
17 lines
411 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
#export DH_VERBOSE=1
|
|
export PYBUILD_NAME=ifupdown2
|
|
export PYBUILD_INSTALL_ARGS=--install-lib=/usr/share/ifupdown2 --install-scripts=/usr/share/ifupdown2
|
|
|
|
%:
|
|
dh $@ --with python2 --buildsystem=pybuild
|
|
|
|
override_dh_installman:
|
|
./scripts/genmanpages.sh ./man.rst ./man
|
|
dh_installman
|
|
|
|
override_dh_installinit:
|
|
dh_systemd_enable --name=networking
|
|
dh_installinit --name=networking --no-start
|