wok-next view libusb/receipt @ rev 20427

Up cookutils (1024), tazpkg (957)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 24 12:19:58 2018 +0200 (2018-01-24)
parents b9143b117298
children 0e7893ac206d
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 copy *.so*
32 }