150c40db86
tinc (1.1~pre17-1) experimental; urgency=medium * New upstream release. - Includes fixes for CVE-2018-16737, CVE-2018-16738. - The GUI is no longer part of upstream, so has been removed. * Link with the miniupnpc library. * Bump Standards-Version. * Bump debian/compat.
20 lines
486 B
Makefile
Executable file
20 lines
486 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --enable-uml --enable-vde --enable-miniupnp --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
|