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

Improve Python packages: update, also provide Python3 packages where available
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Sep 22 16:05:26 2018 +0300 (2018-09-22)
parents 8b5b2a6d07b8
children d457c4e37c1b
line source
1 # SliTaz package receipt v2.
3 ORIGIN="antlr4-python2-runtime"
4 PACKAGE="python-antlr"
5 VERSION="4.7.1"
6 CATEGORY="development"
7 SHORT_DESC="Language tool for constructing recognizers, compilers for Python"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="BSD"
10 WEB_SITE="http://www.antlr.org/"
11 HOST_ARCH="any"
12 REPOLOGY="antlr4"
14 BUILD_DEPENDS="python python3"
15 SPLIT="${PACKAGE/python/python3}:3"
17 compile_rules() {
18 case $SET in
19 3) ORIGIN="${ORIGIN/python2/python3}";;
20 esac
21 pip$SET install --no-compile --root=$install $ORIGIN==$VERSION
22 }
24 genpkg_rules() {
25 copy @std
26 py="${PACKAGE%%-*}" # python/python3
27 DEPENDS="$py"
28 }