First pass of .oe cleanups.
[openembedded.git] / usbutils / usbutils_0.11.oe
1 DEPENDS = "virtual/libc"
2 RDEPENDS = "libc6"
3
4 SRC_URI = http://wwwbode.cs.tum.edu/Par/arch/usb/download/usbutils/usbutils-${PV}.tar.gz \
5           file://${FILESDIR}/configure.patch;patch=1
6 S = "${WORKDIR}/usbutils-${PV}"
7
8 inherit autotools libtool
9 EXTRA_OECONF=--program-prefix=
10 sbindir = "/sbin"
11 bindir = "/bin"
12
13 libusb_remove () {
14         cd ${S}
15         rm -rf libusb
16 }
17
18 python do_unpack () {
19         oe.build.exec_func('base_do_unpack', d)
20         oe.build.exec_func('libusb_remove', d)
21 }
22