445df16805
tinc (1.0.10-1) unstable; urgency=low * New upstream release. * Include Russian debconf translation. Closes: #548759
18 lines
711 B
Makefile
Executable file
18 lines
711 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
#include /usr/share/cdbs/1/rules/simple-patchsys.mk
|
|
include /usr/share/cdbs/1/class/autotools.mk
|
|
|
|
# A bit of a kludge, we have our own init.d handling in postinst, but
|
|
# cdbs calls dh_installinit anyway.
|
|
DEB_DH_INSTALLINIT_ARGS = -n
|
|
|
|
clean::
|
|
rm -rf src/device.c doc/tinc
|
|
build/tinc::
|
|
cd doc && $(MAKE) texi2html
|
|
binary-post-install/tinc::
|
|
mv -v doc/tinc/*.html debian/$(cdbs_curpkg)/usr/share/doc/$(cdbs_curpkg)/
|
|
rm -f debian/$(cdbs_curpkg)/usr/share/info/dir*
|
|
cd debian/$(cdbs_curpkg)/usr/share/doc/$(cdbs_curpkg)/ && tar xzf ../../../../../../doc/sample-config.tar.gz && mv sample-config examples && rm -rf examples/CVS examples/hosts/CVS
|