CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
gcc: updated to 6.3.0
[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# Depends on: eudev
6
7name=libusb
8version=1.0.19
9release=1
10source=(http://downloads.sourceforge.net/project/$name/$name-1.0/$name-$version/$name-$version.tar.bz2)
11
12build () {
13 cd $name-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr
18 make
19 make DESTDIR=$PKG install
20
21 install -d $PKG/lib
22 mv $PKG/usr/lib/libusb-1.0.so.* $PKG/lib
23 ln -sf ../../lib/$(readlink $PKG/lib/libusb-1.0.so.0) $PKG/usr/lib/libusb-1.0.so
24}