blob: 81cc0949a9ffc00eda229db60ac383118a6ddc53 (
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"
DEPENDS = "ncurses"
LICENSE = "Unspecified"
PR = "r0"
SRC_URI = "${SOURCEFORGE_MIRROR}/bwmon/${P}.tar.gz \
file://makefile.patch;patch=1"
EXTRA_OEMAKE = "LDFLAGS=-L${STAGING_LIBDIR}"
inherit autotools
do_install () {
install -d ${D}${bindir}
install ${S}/bwmon ${D}${bindir}/bwmon
}
|