summaryrefslogtreecommitdiffstats
path: root/rules/iftop.make
blob: 2d1f8924df4eef65c66ff18dca14ba81f8414d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*-makefile-*-
#
# Copyright (C) 2017 by Alexander Dahl <post@lespocky.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
PACKAGES-$(PTXCONF_IFTOP) += iftop

#
# Paths and names
#
IFTOP_VERSION	:= 1.0pre4
IFTOP_MD5	:= 7e6decb4958e8a4890cccac335239f24
IFTOP		:= iftop-$(IFTOP_VERSION)
IFTOP_SUFFIX	:= tar.gz
IFTOP_URL	:= http://www.ex-parrot.com/pdw/iftop/download/$(IFTOP).$(IFTOP_SUFFIX)
IFTOP_SOURCE	:= $(SRCDIR)/$(IFTOP).$(IFTOP_SUFFIX)
IFTOP_DIR	:= $(BUILDDIR)/$(IFTOP)
IFTOP_LICENSE	:= GPL-2.0-or-later

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

IFTOP_CONF_TOOL	:= autoconf
IFTOP_CONF_OPT	:= \
	$(CROSS_AUTOCONF_USR) \
	--with-resolver=netdb \
	--with-libpcap

IFTOP_CFLAGS	:= -fcommon

# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------

$(STATEDIR)/iftop.targetinstall:
	@$(call targetinfo)

	@$(call install_init, iftop)
	@$(call install_fixup, iftop,PRIORITY,optional)
	@$(call install_fixup, iftop,SECTION,base)
	@$(call install_fixup, iftop,AUTHOR,"Alexander Dahl <post@lespocky.de>")
	@$(call install_fixup, iftop,DESCRIPTION,missing)

	@$(call install_copy, iftop, 0, 0, 0755, -, /usr/sbin/iftop)

	@$(call install_finish, iftop)

	@$(call touch)

# vim: ft=make noet