46616ac501
tinc (1.1~pre15-1) experimental; urgency=medium * New upstream release. * Bump Standards-Version. * Bump debian/compat. * Don't use while loops checking PID files anymore, the tinc CLI will wait properly for the daemon to start or stop. Closes: #772379, #832784 * Clean up scripts as suggested by Dominik George. Closes: #832781 * Test for /etc/default/tinc before trying to source it. Closes: #777262
20 lines
481 B
Makefile
Executable file
20 lines
481 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@ --parallel --with python2
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --enable-vde --with-systemd
|
|
$(MAKE) clean
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- install-html
|
|
# Remove info dir file
|
|
rm -f debian/tinc/usr/share/info/dir
|
|
|
|
override_dh_auto_test:
|
|
# Don't run the tests, it involves starting tinc daemons and making network connections.
|
|
# I don't think the autobuilders will like this.
|
|
|
|
override_dh_installinit:
|
|
dh_installinit -r
|