wok-6.x annotate dfu-util/receipt @ rev 23832
updated pan (0.134 -> 0.146)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jun 01 06:59:53 2020 +0100 (2020-06-01) |
parents | 7f2789b79625 |
children | 370da83187ab |
rev | line source |
---|---|
pascal@17335 | 1 # SliTaz package receipt. |
pascal@17335 | 2 |
pascal@17335 | 3 PACKAGE="dfu-util" |
Hans-G?nter@20824 | 4 VERSION="0.9" |
pascal@17335 | 5 CATEGORY="utilities" |
pascal@17335 | 6 SHORT_DESC="Device Firmware Upgrade Utilities (for USB devices)." |
pascal@17335 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@17335 | 8 LICENSE="GPL2" |
pascal@22095 | 9 WEB_SITE="http://dfu-util.sourceforge.net/" |
Hans-G?nter@20824 | 10 |
pascal@17335 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@20824 | 12 WGET_URL="http://dfu-util.sourceforge.net/releases/$TARBALL" |
pascal@17335 | 13 |
pascal@17335 | 14 BUILD_DEPENDS="pkg-config glib libusb-dev" |
pascal@17335 | 15 |
pascal@17335 | 16 # Rules to configure and make the package. |
pascal@17335 | 17 compile_rules() |
pascal@17335 | 18 { |
pascal@22096 | 19 export CFLAGS="$CFLAGS -I/usr/include/libusb-1.0" |
Hans-G?nter@20824 | 20 ./configure \ |
Hans-G?nter@20824 | 21 --prefix=/usr \ |
pascal@17335 | 22 $CONFIGURE_ARGS && |
pascal@17335 | 23 make && |
pascal@17335 | 24 make DESTDIR=$DESTDIR install |
pascal@17335 | 25 } |
pascal@17335 | 26 |
pascal@17335 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@17335 | 28 genpkg_rules() |
pascal@17335 | 29 { |
pascal@17335 | 30 mkdir -p $fs/usr |
pascal@17335 | 31 cp -a $install/usr/bin $fs/usr |
pascal@17335 | 32 } |