wok-next view libusb/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libusb"
4 VERSION="1.0.22"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library used by some applications for USB device access"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://libusb.info/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/libusb.html"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://github.com/libusb/libusb/releases/download/v$VERSION/$TARBALL"
14 TARBALL_SHA1="10116aa265aac4273a0c894faa089370262ec0dc"
16 BUILD_DEPENDS="eudev-dev"
17 SPLIT="$PACKAGE-dev"
19 DEPENDS_std="eudev"
20 DEPENDS_dev="$PACKAGE eudev-dev"
22 compile_rules() {
23 sed -i 's|^PROJECT_LOGO|#&|' doc/doxygen.cfg.in
25 # Results are unstable, please keep `make -j1`
26 ./configure \
27 --disable-static \
28 $CONFIGURE_ARGS &&
29 fix libtool &&
30 make -j1 &&
31 make install
32 }