core/libusb/Pkgfile

22 lines
601 B
Plaintext
Raw Normal View History

2006-02-23 18:19:35 +01:00
# Description: Library giving userland programs access to USB devices
2014-01-28 14:03:55 +01:00
# URL: http://libusb.info
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: eudev
2006-02-23 18:19:35 +01:00
name=libusb
2014-06-14 18:25:13 +02:00
version=1.0.19
release=1
2014-01-28 14:03:55 +01:00
source=(http://downloads.sourceforge.net/project/$name/$name-1.0/$name-${version%-*}/$name-$version.tar.bz2)
2006-02-23 18:19:35 +01:00
build () {
2014-01-28 14:03:55 +01:00
cd $name-$version
2009-05-13 21:00:42 +02:00
2006-03-05 11:35:50 +01:00
./configure --prefix=/usr
2006-02-23 18:19:35 +01:00
make
make DESTDIR=$PKG install
2009-05-13 21:00:42 +02:00
install -d $PKG/lib
2009-07-15 15:49:40 +02:00
mv $PKG/usr/lib/libusb-1.0.so.* $PKG/lib
2012-04-24 08:59:49 +02:00
ln -sf ../../lib/$(readlink $PKG/lib/libusb-1.0.so.0) $PKG/usr/lib/libusb-1.0.so
2006-02-23 18:19:35 +01:00
}