wok-6.x annotate libusb/receipt @ rev 24120
updated xfig (3.2.5b -> 3.2.8b)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Oct 05 16:55:05 2021 +0100 (2021-10-05) |
parents | 6616b8e3cfe1 |
children | e743728fa1e7 |
rev | line source |
---|---|
pankso@640 | 1 # SliTaz package receipt. |
pankso@640 | 2 |
pankso@640 | 3 PACKAGE="libusb" |
Hans-G?nter@23117 | 4 VERSION="1.0.23" |
pankso@640 | 5 CATEGORY="system-tools" |
pascal@19991 | 6 SHORT_DESC="USB access library." |
pankso@640 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15482 | 8 LICENSE="LGPL2.1" |
Hans-G?nter@21329 | 9 WEB_SITE="https://libusb.info/" |
Hans-G?nter@21329 | 10 |
pankso@2864 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
Hans-G?nter@23117 | 12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" |
pankso@640 | 13 |
pascal@16365 | 14 DEPENDS="udev" |
pascal@16365 | 15 BUILD_DEPENDS="udev-dev" |
pascal@16365 | 16 |
Hans-G?nter@21329 | 17 HOST_ARCH="i486 arm" |
Hans-G?nter@21329 | 18 |
pascal@24055 | 19 current_version() |
pascal@24055 | 20 { |
pascal@24055 | 21 wget -O - ${WGET_URL%/down*} 2>/dev/null | \ |
pascal@24055 | 22 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' |
pascal@24055 | 23 } |
pascal@24055 | 24 |
pankso@640 | 25 # Rules to configure and make the package. |
pankso@640 | 26 compile_rules() |
pankso@640 | 27 { |
pankso@16079 | 28 ./configure $CONFIGURE_ARGS && |
Hans-G?nter@21329 | 29 make -j 1 && |
Hans-G?nter@21329 | 30 make install |
pankso@640 | 31 } |
pankso@640 | 32 |
pankso@640 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@640 | 34 genpkg_rules() |
pankso@640 | 35 { |
pankso@640 | 36 mkdir -p $fs/usr/lib |
Hans-G?nter@23117 | 37 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@640 | 38 } |