chiark / gitweb /
server/admin: New ALGS command.
[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" \
25 --with-logfile="/var/log/tripe.log" \
26 --with-pidfile="/var/run/tripectl.pid" \
27 --with-initconfig="/etc/default/tripe" \
28 --with-wireshark
29
30###--------------------------------------------------------------------------
31### Install the startup scripts.
32
33install/tripe::
34 cp $(DEB_BUILDDIR)/init/tripe-init debian/tripe.init
35 cp $(DEB_SRCDIR)/init/tripe.conf debian/tripe.default
36
37cleanbuilddir::
38 rm -f debian/tripe.init debian/tripe.default
39
40###--------------------------------------------------------------------------
41### Wireshark plugin.
42
43## Grab the version we built against, so we can put it in the dependencies.
44install/tripe-wireshark::
28461f0e
MW
45 dpkg --status wireshark | \
46 sed -n 's/^Version: */tripe:Wireshark-Version=/p' \
47 >> debian/tripe-wireshark.substvars
ef4a1ab7 48
6b6ad670
MW
49## Don't track dependencies for the plugin. We have it covered already.
50DEB_DH_SHLIBDEPS_ARGS_tripe-wireshark += -Xwireshark/plugins
ef4a1ab7 51
6b6ad670 52###----- That's all, folks --------------------------------------------------