wok view libusb/receipt @ rev 20009

Add: description.txt and links revision.
author Leonardo Laporte <hackdorte@yandex.com>
date Thu Aug 03 05:22:36 2017 -0300 (2017-08-03)
parents d15f5ee57730
children 82030d5e8b0a
line source
1 # SliTaz package receipt.
3 PACKAGE="libusb"
4 VERSION="1.0.18"
5 CATEGORY="system-tools"
6 SHORT_DESC="USB access library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://libusb.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="udev"
15 BUILD_DEPENDS="udev-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }