8e468ffc54
tinc (1.1~pre17-1.1) experimental; urgency=medium * Non-maintainer upload. * Fix systemd service install path. Closes: #910618 * Fix typo in --enable-miniupnpc option.
21 lines
512 B
Makefile
Executable file
21 lines
512 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --enable-uml --enable-vde --enable-miniupnpc \
|
|
--with-systemd=/lib/systemd/system/
|
|
$(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
|