blob: 85fbf1d120571a7a2561e5be5b02899d1c15490a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Librairie pour interface USB
# URL: http://libusb.wiki.sourceforge.net/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
name=libusb
version=1.0.9
release=1
source=(http://downloads.sourceforge.net/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-examples-build
make
make DESTDIR=$PKG install
}
|