blob: bf424b78248b38de359918e0a4b0147d3ff1bba8 (
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 = "USB console utilities."
SECTION = "base"
SRC_URI = "http://wwwbode.cs.tum.edu/Par/arch/usb/download/usbutils/usbutils-${PV}.tar.gz \
file://configure.patch;patch=1"
S = "${WORKDIR}/usbutils-${PV}"
inherit autotools
EXTRA_OECONF = "--program-prefix="
sbindir = "/sbin"
bindir = "/bin"
libusb_remove () {
cd ${S}
rm -rf libusb
}
python do_unpack () {
oe.build.exec_func('base_do_unpack', d)
oe.build.exec_func('libusb_remove', d)
}
|