blob: 33b5110600ba76a54d75bf09c4db598951f9969b (
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: 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=0.1.12
release=1
source=( http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
build() {
# build package
cd $name-$version
./configure --prefix=/usr\
--disable-build-docs\
--mandir=/usr/share/man\
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
}
|