wok-next annotate androguard/receipt @ rev 21048

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Nov 27 02:24:27 2018 +0200 (2018-11-27)
parents d5aab818505e
children 0eb8cc9cdea8
rev   line source
al@20797 1 # SliTaz package receipt v2.
pascal@13358 2
pascal@13358 3 PACKAGE="androguard"
al@20797 4 VERSION="3.2.0"
pascal@13358 5 CATEGORY="development"
al@20797 6 SHORT_DESC="Reverse engineering, malware and goodware analysis of Android \
al@20797 7 applications and more"
pascal@13358 8 MAINTAINER="pascal.bellard@slitaz.org"
al@20797 9 LICENSE="Apache2"
al@20797 10 WEB_SITE="https://github.com/androguard/androguard/"
al@21048 11 HOST_ARCH="any"
al@20797 12
pascal@13358 13 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20797 14 WGET_URL="https://github.com/androguard/androguard/releases/download/v$VERSION/$TARBALL"
pascal@13358 15
al@20797 16 BUILD_DEPENDS="python"
al@21048 17 DEPENDS_std="python"
pascal@13358 18
al@20797 19 compile_rules() {
al@21020 20 python -B setup.py build &&
al@21048 21 python -B setup.py install --root=$install || return 1
al@21048 22
al@21048 23 find $install -type f -perm 664 -exec chmod 644 '{}' \;
pascal@13358 24 }