36f0d3c816
tinc (1.0.35-2) unstable; urgency=medium * Bump Standards-Version and Build-Depend on debhelper-compat (= 12). * Remove calls to dh_installinit and dh_systemd_start from debian/rules, compat level 12 does the right thing by default. * Ensure we clean up doc/tinc.info.
16 lines
334 B
Makefile
Executable file
16 lines
334 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_clean:
|
|
dh_clean
|
|
rm -f doc/tinc.info
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --enable-uml --enable-vde --with-systemd=/lib/systemd/system --runstatedir=/run
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- install-html
|
|
# Remove info dir file
|
|
rm -f debian/tinc/usr/share/info/dir
|