wok annotate androguard/receipt @ rev 16701

Up: tazpkg (5.3.1): fix bug with installing coreutils-directory package
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon May 26 16:17:01 2014 +0300 (2014-05-26)
parents 2b9f96603415
children 16df76e1fc6a
rev   line source
pascal@13358 1 # SliTaz package receipt.
pascal@13358 2
pascal@13358 3 PACKAGE="androguard"
pascal@13358 4 VERSION="1.5"
pascal@13358 5 CATEGORY="development"
pascal@13358 6 SHORT_DESC="Reverse engineering tool for Android applications."
pascal@13358 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15201 8 LICENSE="GPL3"
pascal@13358 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13358 10 WEB_SITE="http://code.google.com/p/$PACKAGE"
pascal@13358 11 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
pascal@13358 12
pascal@13358 13 DEPENDS="python"
pascal@13358 14 BUILD_DEPENDS="python-dev setuptools"
pascal@13358 15
pascal@13358 16 # Rules to configure and make the package.
pascal@13358 17 compile_rules()
pascal@13358 18 {
pascal@13358 19 cd $src
pascal@13358 20 python setup.py build &&
pascal@13358 21 python setup.py install --root=$DESTDIR
pascal@13358 22 }
pascal@13358 23
pascal@13358 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13358 25 genpkg_rules()
pascal@13358 26 {
pascal@13358 27 cp -a $install/usr $fs
pascal@13358 28 }