wok-next diff firmware-mod-kit/receipt @ rev 21543

updated ccid (1.4.30 -> 1.4.32)
author Hans-G?nter Theisgen
date Sun Jun 21 17:20:25 2020 +0100 (2020-06-21)
parents a3c581bf52b8
children
line diff
     1.1 --- a/firmware-mod-kit/receipt	Fri Aug 10 12:53:17 2018 +0300
     1.2 +++ b/firmware-mod-kit/receipt	Sun Jun 21 17:20:25 2020 +0100
     1.3 @@ -3,7 +3,7 @@
     1.4  PACKAGE="firmware-mod-kit"
     1.5  VERSION="099"
     1.6  CATEGORY="misc"
     1.7 -SHORT_DESC="Scripts and utilities to rebuild openwrt based images."
     1.8 +SHORT_DESC="Scripts and utilities to rebuild openwrt based images"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="MIT"
    1.11  WEB_SITE="https://github.com/rampageX/firmware-mod-kit/wiki"
    1.12 @@ -11,21 +11,18 @@
    1.13  TARBALL="fmk_$VERSION.tar.gz"
    1.14  WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$PACKAGE/$TARBALL"
    1.15  
    1.16 -DEPENDS="liblzma zlib bash python-magic coreutils-file-special"
    1.17  BUILD_DEPENDS="xz-dev zlib-dev"
    1.18  
    1.19 -# Rules to configure and make the package.
    1.20 -compile_rules()
    1.21 -{
    1.22 +compile_rules() {
    1.23  	cd $src/src
    1.24 -	./configure $CONFIGURE_ARGS && make -j1
    1.25 +	./configure $CONFIGURE_ARGS &&
    1.26 +	make -j1 || return 1
    1.27  
    1.28  	mkdir -p $install/usr/share
    1.29  	cp -a $src $install/usr/share/firmware-mod-kit
    1.30  }
    1.31  
    1.32 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.33 -genpkg_rules()
    1.34 -{
    1.35 +genpkg_rules() {
    1.36  	cp -a $install/* $fs
    1.37 +	DEPENDS="liblzma zlib bash python-magic coreutils-file-special"
    1.38  }