wok-next diff androguard/receipt @ rev 21294

updated netsurf (3.8 -> 3.9)
author Hans-G?nter Theisgen
date Mon Dec 09 07:42:31 2019 +0100 (2019-12-09)
parents d5aab818505e
children 0eb8cc9cdea8
line diff
     1.1 --- a/androguard/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/androguard/receipt	Mon Dec 09 07:42:31 2019 +0100
     1.3 @@ -8,18 +8,17 @@
     1.4  MAINTAINER="pascal.bellard@slitaz.org"
     1.5  LICENSE="Apache2"
     1.6  WEB_SITE="https://github.com/androguard/androguard/"
     1.7 +HOST_ARCH="any"
     1.8  
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WGET_URL="https://github.com/androguard/androguard/releases/download/v$VERSION/$TARBALL"
    1.11  
    1.12  BUILD_DEPENDS="python"
    1.13 +DEPENDS_std="python"
    1.14  
    1.15  compile_rules() {
    1.16  	python -B setup.py build &&
    1.17 -	python -B setup.py install --root=$install
    1.18 +	python -B setup.py install --root=$install || return 1
    1.19 +
    1.20 +	find $install -type f -perm 664 -exec chmod 644 '{}' \;
    1.21  }
    1.22 -
    1.23 -genpkg_rules() {
    1.24 -	copy @std
    1.25 -	DEPENDS="python"
    1.26 -}