blob: bd609f67c68402015589bcf2a5144925ae354136 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "ngrep strives to provide most of GNU grep's \
common features, applying them to the network layer."
SECTION = "base"
PRIORITY = "optional"
RDEPENDS = "libc6 libpcap"
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 libtool
do_install () {
oe_runmake BINDEST="${D}/${bindir}" MANDEST="${D}/${mandir}"
}
|