chiark / gitweb /
server/tests.at: Add a retry loop in `COMMS_EPING'.
[tripe] / debian / rules
CommitLineData
ef4a1ab7 1#! /usr/bin/make -f
2
6b6ad670 3CDBS = /usr/share/cdbs/1
ef4a1ab7 4
6b6ad670
MW
5include $(CDBS)/rules/debhelper.mk
6include $(CDBS)/class/autotools.mk
ef4a1ab7 7
6b6ad670
MW
8###--------------------------------------------------------------------------
9### General settings.
ef4a1ab7 10
6b6ad670 11DEB_BUILDDIR = $(CURDIR)/build
1c5f4539 12DEB_MAKE_CHECK_TARGET = check
ef4a1ab7 13
6b6ad670
MW
14###--------------------------------------------------------------------------
15### Correct configuration.
ef4a1ab7 16
6b6ad670
MW
17## This will need changing on other kernels.
18default_tunnel = linux
19
20## Configuration arguments.
21DEB_CONFIGURE_EXTRA_FLAGS = \
22 --with-tunnel="$(default_tunnel) slip" \
23 --with-configdir="/etc/tripe" \
24 --with-socketdir="/var/run" \
1a372224 25 --with-logfile="/var/log/tripe/tripe.log" \
6b6ad670
MW
26 --with-pidfile="/var/run/tripectl.pid" \
27 --with-initconfig="/etc/default/tripe" \
1a372224 28 --with-wireshark="/usr/lib/wireshark/libwireshark0/plugins"
6b6ad670 29
2fa80010
MW
30###--------------------------------------------------------------------------
31### Python.
32
33binary-install/python-tripe::
34 dh_pycentral -ppython-tripe
35
6b6ad670
MW
36###--------------------------------------------------------------------------
37### Install the startup scripts.
38
39install/tripe::
40 cp $(DEB_BUILDDIR)/init/tripe-init debian/tripe.init
a5c4dd60
MW
41 sed 's/^#\(user\|group\)/\1/' \
42 $(DEB_SRCDIR)/init/tripe.conf >debian/tripe.default
6b6ad670
MW
43
44cleanbuilddir::
45 rm -f debian/tripe.init debian/tripe.default
46
a62f8e8a
MW
47###--------------------------------------------------------------------------
48### Install configuration files.
49
50install/tripe-peer-services::
51 install -m644 $(DEB_SRCDIR)/peerdb/peers.in \
52 debian/tripe-peer-services/etc/tripe/peers.d/10base
53
6b6ad670
MW
54###--------------------------------------------------------------------------
55### Wireshark plugin.
56
57## Grab the version we built against, so we can put it in the dependencies.
58install/tripe-wireshark::
28461f0e
MW
59 dpkg --status wireshark | \
60 sed -n 's/^Version: */tripe:Wireshark-Version=/p' \
61 >> debian/tripe-wireshark.substvars
ef4a1ab7 62
6b6ad670
MW
63## Don't track dependencies for the plugin. We have it covered already.
64DEB_DH_SHLIBDEPS_ARGS_tripe-wireshark += -Xwireshark/plugins
ef4a1ab7 65
6b6ad670 66###----- That's all, folks --------------------------------------------------