dev-image: Add speedtest-cli
This commit is contained in:
parent
a4775709c0
commit
3f313fa4a3
|
|
@ -19,6 +19,7 @@ BENCH_TOOLS = " \
|
|||
strongswan \
|
||||
gps-utils \
|
||||
ser2net \
|
||||
speedtest-cli \
|
||||
"
|
||||
|
||||
EASY_EDITOR = " \
|
||||
|
|
|
|||
|
|
@ -0,0 +1,19 @@
|
|||
SUMMARY = "Speed Test tool"
|
||||
DESCRIPTION = "Command line interface for testing internet bandwidth using speedtest.net"
|
||||
PR = "r1"
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
|
||||
|
||||
SRC_URI = "git://github.com/sivel/speedtest-cli.git;protocol=git "
|
||||
SRCREV = "${AUTOREV}"
|
||||
S = "${WORKDIR}/git"
|
||||
RDEPENDS_${PN} = "python"
|
||||
|
||||
do_install () {
|
||||
install -d -m 755 ${D}${bindir}/
|
||||
install -m 755 speedtest.py ${D}${bindir}/
|
||||
}
|
||||
|
||||
FILES_${PN} = " ${bindir}/speedtest.py"
|
||||
|
||||
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
||||
Loading…
Reference in New Issue