blob: a069fa895f14e9f1234cf09c70c8c3af0cba918c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
MAKEDEPS="libusb wget"
DEPS="libusb musl hwids toybox python"
PKG_VER=014
SOURCE=https://www.kernel.org/pub/linux/utils/usb/usbutils/usbutils-$PKG_VER.tar.xz
DESC="A collection of USB tools to query connected USB devices"
build () {
./configure --prefix=/usr --datadir=/usr/share/hwdata &&
make
}
package () {
make DESTDIR=$PKG_DEST install
install -dm755 $PKG_DEST/usr/share/hwdata/ &&
wget http://www.linux-usb.org/usb.ids -O $PKG_DEST/usr/share/hwdata/usb.ids
}
|