# SliTaz package receipt.

PACKED_SIZE="20.0K"
UNPACKED_SIZE="36.0K"
PACKAGE="libusb-compat"
VERSION="0.1.3"
CATEGORY="system-tools"
SHORT_DESC="Compatibility layer to converts libusb 0.1 calls into 1.0 equivalents."
MAINTAINER="pankso@slitaz.org"
TARBALL="$PACKAGE-$VERSION.tar.bz2"
WEB_SITE="http://libusb.sourceforge.net/"
WGET_URL="$SF_MIRROR/libusb/$TARBALL"

DEPENDS="libusb"
BUILD_DEPENDS="libusb-dev"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	./configure \
		--prefix=/usr \
		$CONFIGURE_ARGS &&
	make &&
	make DESTDIR=$PWD/_pkg install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/lib
	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
}

