wok-next view python-antlr/receipt @ rev 19872

Up palemoon (27.5.0)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Wed Sep 27 20:45:12 2017 +0200 (2017-09-27)
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 }