blob: f168f4605b80d7cf7745e0130ab04b7381a803e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Utilitaire pci pour liaison USB
# URL: http://downloads.sourceforge.net/linux-usb/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libusb-compat
# Run on: libusb-compat
name=usbutils
version=0.86
release=1
source=( http://downloads.sourceforge.net/linux-usb/$name-$version.tar.gz)
build() {
# build package
cd $name-$version
./configure --prefix=/usr --disable-zlib
make
make DESTDIR=$PKG install
}
|