wok annotate python-antlr/receipt @ rev 16915

libcanberra: Update bdeps
author Yuri Pourre <yuripourre@gmail.com>
date Tue Jul 15 22:45:20 2014 -0300 (2014-07-15)
parents 9d082d25caea
children 16df76e1fc6a
rev   line source
pascal@11727 1 # SliTaz package receipt.
pascal@11727 2
pascal@11727 3 PACKAGE="python-antlr"
pascal@11727 4 SOURCE="antlr"
pascal@11727 5 VERSION="3.4"
pascal@11727 6 CATEGORY="development"
pascal@11727 7 SHORT_DESC="language tool for constructing recognizers, compilers for python."
pascal@11727 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15378 9 LICENSE="BSD"
pascal@11727 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@11727 11 WEB_SITE="http://www.antlr.org/"
pascal@11727 12 WGET_URL="${WEB_SITE}download/$TARBALL"
pascal@11727 13
pascal@11727 14 DEPENDS="python"
pascal@11727 15 BUILD_DEPENDS="python python-dev setuptools"
pascal@11727 16
pascal@11727 17 # Rules to configure and make the package.
pascal@11727 18 compile_rules()
pascal@11727 19 {
pascal@11727 20 cd $src/runtime/Python
pascal@11727 21 python setup.py build
pascal@11727 22 python setup.py install --root=$DESTDIR
pascal@11727 23 }
pascal@11727 24
pascal@11727 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11727 26 genpkg_rules()
pascal@11727 27 {
pascal@11727 28 mkdir -p $fs/usr
pascal@15378 29 cp -a $install/usr/lib $fs/usr
pascal@11727 30 }