CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
sysfsutils: aligned with upstream
[crossrootfs.git] / libusb / Pkgfile
... / ...
CommitLineData
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
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5
6name=libusb
7version=1.0.8
8release=1
9source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
10
11build () {
12 cd $name-$version
13
14 ./configure --build=$CHOST \
15 --host=$CTARGET \
16 --prefix=/usr
17 make
18 make DESTDIR=$PKG install
19
20 install -d $PKG/lib
21 mv $PKG/usr/lib/libusb-1.0.so.* $PKG/lib
22 ln -sf ../../lib/libusb-1.0.so.0.0.0 $PKG/usr/lib/libusb-1.0.so
23}