blob: afaad8807168c0f722ed604184bdd0836abde0f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DESCRIPTION = "ngrep strives to provide most of GNU grep's \
common features, applying them to the network layer."
SECTION = "base"
PRIORITY = "optional"
DEPENDS = "virtual/libc libpcap pcre"
SRC_URI = "${SOURCEFORGE_MIRROR}/ngrep/ngrep-${PV}.tar.bz2"
EXTRA_OECONF = "--with-safe-user --with-restart"
EXTRA_OEMAKE = "INCLUDES=${S}"
inherit autotools
do_install () {
oe_runmake BINDEST="${D}/${bindir}" MANDEST="${D}/${mandir}"
}
|