20 lines
541 B
BlitzBasic
20 lines
541 B
BlitzBasic
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} = "python3"
|
|
|
|
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"
|