CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libusb: updated to 1.0.9 and aligned with upstream
[crossrootfs.git] / libusb / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: Library giving userland programs access to USB devices
2# URL: http://libusb.sourceforge.net/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5
6name=libusb
4f238c45
VM
7version=1.0.9
8release=2
b9e9f764 9source=(http://downloads.sourceforge.net/project/$name/$name-1.0/$name-$version/$name-$version.tar.bz2)
6dca1d21
JB
10
11build () {
12 cd $name-$version
6daf14e6 13
6dca1d21
JB
14 ./configure --build=$CHOST \
15 --host=$CTARGET \
16 --prefix=/usr
17 make
18 make DESTDIR=$PKG install
6daf14e6
JB
19
20 install -d $PKG/lib
21 mv $PKG/usr/lib/libusb-1.0.so.* $PKG/lib
4f238c45 22 ln -sf ../../lib/$(readlink $PKG/lib/libusb-1.0.so.0) $PKG/usr/lib/libusb-1.0.so
6dca1d21 23}