wok-next annotate libusb/receipt @ rev 21264

updated firefox-official (69.0 -> 71.0)
author Hans-G?nter Theisgen
date Fri Dec 06 15:46:28 2019 +0100 (2019-12-06)
parents d5aab818505e
children
rev   line source
al@20443 1 # SliTaz package receipt v2.
pankso@640 2
pankso@640 3 PACKAGE="libusb"
al@20905 4 VERSION="1.0.22"
pankso@640 5 CATEGORY="system-tools"
al@19691 6 SHORT_DESC="Library used by some applications for USB device access"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15482 8 LICENSE="LGPL2.1"
al@20906 9 WEB_SITE="https://libusb.info/"
al@20905 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/libusb.html"
pankso@640 11
al@19691 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@20443 13 WGET_URL="https://github.com/libusb/libusb/releases/download/v$VERSION/$TARBALL"
al@21153 14 TARBALL_SHA1="10116aa265aac4273a0c894faa089370262ec0dc"
al@19691 15
al@19691 16 BUILD_DEPENDS="eudev-dev"
al@21020 17 SPLIT="$PACKAGE-dev"
pascal@16365 18
al@21153 19 DEPENDS_std="eudev"
al@21153 20 DEPENDS_dev="$PACKAGE eudev-dev"
al@21153 21
al@20443 22 compile_rules() {
al@20905 23 sed -i 's|^PROJECT_LOGO|#&|' doc/doxygen.cfg.in
al@20443 24
al@19694 25 # Results are unstable, please keep `make -j1`
al@19691 26 ./configure \
al@19691 27 --disable-static \
al@19691 28 $CONFIGURE_ARGS &&
al@20595 29 fix libtool &&
al@20595 30 make -j1 &&
al@20595 31 make install
pankso@640 32 }