2009-03-23 05:03:09 +00:00
|
|
|
# Template file for 'usbutils'
|
|
|
|
pkgname=usbutils
|
2011-05-03 13:35:59 +00:00
|
|
|
version=002
|
2011-01-11 22:30:05 +00:00
|
|
|
distfiles="${KERNEL_SITE}/utils/usb/$pkgname/$pkgname-$version.tar.bz2"
|
2011-11-12 05:01:02 +00:00
|
|
|
revision=1
|
2009-03-23 05:03:09 +00:00
|
|
|
short_desc="Linux USB utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-05-03 13:35:59 +00:00
|
|
|
checksum=75da0785a8402d1c52a65ad8ed95decd96dc7294651f43f11b07c15cdfdce1f8
|
2009-03-23 05:03:09 +00:00
|
|
|
long_desc="
|
|
|
|
This package contains utilities for inspecting devices connected to a
|
|
|
|
USB bus."
|
|
|
|
|
2011-07-07 15:50:56 +00:00
|
|
|
Add_dependency build pkg-config
|
2009-03-23 05:03:09 +00:00
|
|
|
Add_dependency build which
|
2011-07-02 22:34:59 +00:00
|
|
|
Add_dependency build libusb-devel
|
2010-01-07 20:29:25 +00:00
|
|
|
Add_dependency build libusb-compat-devel
|
2009-03-23 05:03:09 +00:00
|
|
|
|
2011-05-03 13:35:59 +00:00
|
|
|
do_build()
|
2009-03-23 05:03:09 +00:00
|
|
|
{
|
2009-05-05 01:21:16 +00:00
|
|
|
rm usb.ids
|
2009-10-17 01:16:09 +00:00
|
|
|
$XBPS_FETCH_CMD http://www.linux-usb.org/usb.ids
|
2011-05-03 13:35:59 +00:00
|
|
|
./configure --prefix=/usr --datadir=/usr/share/hwdata --disable-zlib
|
|
|
|
make ${makejobs}
|
2009-03-23 05:03:09 +00:00
|
|
|
}
|
2009-09-30 11:45:43 +00:00
|
|
|
|
2011-05-03 13:35:59 +00:00
|
|
|
do_install()
|
2009-09-30 11:45:43 +00:00
|
|
|
{
|
2011-05-03 13:35:59 +00:00
|
|
|
make DESTDIR=${DESTDIR} install
|
2010-11-04 12:55:30 +00:00
|
|
|
install -d ${DESTDIR}/usr/lib
|
|
|
|
mv ${DESTDIR}/usr/share/pkgconfig ${DESTDIR}/usr/lib
|
2009-09-30 11:45:43 +00:00
|
|
|
}
|