wok-next view libusb/receipt @ rev 19714

Up cookutils (901)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 12 16:19:41 2017 +0300 (2017-05-12)
parents 4048d48a47c1
children f463de72afe3
line source
1 # SliTaz package receipt.
3 PACKAGE="libusb"
4 VERSION="1.0.20"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library used by some applications for USB device access"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://libusb.info/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 DEPENDS="eudev"
16 BUILD_DEPENDS="eudev-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # Results are unstable, please keep `make -j1`
22 ./configure \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 make -j1 && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cook_copy_files *.so*
32 }