blob: 8f5d5f4e3b28833317d85a4ab0b359e17048ec0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "The Linux bandwidth monitor"
MAINTAINER = "Oyvind Repvik <nail@nslu2-linux.org"
LICENSE = "GPL"
DEPENDS = "ncurses"
PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/bwmon/${P}.tar.gz \
file://makefile.patch;patch=1"
inherit autotools
EXTRA_OEMAKE = "LDFLAGS=-L${STAGING_LIBDIR}"
do_install () {
install -d ${D}${bindir}
install ${S}/bwmon ${D}${bindir}/bwmon
}
|