wok-next view python-antlr/receipt @ rev 19805
Update full xorg-* stack (add / upgrade / remove no more compiled packages with this xorg-server), normalize receipts to v2.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Jul 14 16:02:21 2017 +0300 (2017-07-14) |
parents | 16df76e1fc6a |
children | 7a27d976b7a5 |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="python-antlr"
4 VERSION="3.4"
5 CATEGORY="development"
6 SHORT_DESC="Language tool for constructing recognizers, compilers for Python"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://www.antlr.org/"
11 TARBALL="antlr-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}download/$TARBALL"
14 BUILD_DEPENDS="python"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src/runtime/Python
20 python setup.py build
21 python setup.py install --root=$DESTDIR
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 copy @std
28 DEPENDS="python"
29 }