blob: 891d66f381c3f0f42937a2b72904a161f99469e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Host side USB console utilities."
SECTION = "base"
DEPENDS += "libusb-compat"
LICENSE = "GPL"
PRIORITY = "optional"
DEFAULT_PREFERENCE = "1"
PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/linux-usb/usbutils-${PV}.tar.gz"
S = "${WORKDIR}/usbutils-${PV}"
inherit autotools
EXTRA_OECONF = "--program-prefix="
sbindir = "/sbin"
bindir = "/bin"
FILES_${PN} += "${datadir}/usb*"
do_configure_prepend() {
rm -rf ${S}/libusb
}
|