wok view ptpython/receipt @ rev 24920

updated mp (5.2.10 -> 5.58)
author Hans-G?nter Theisgen
date Sun Apr 10 07:48:27 2022 +0100 (2022-04-10)
parents ac8ca9758df1
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ptpython"
4 VERSION="3.0.1"
5 CATEGORY="development"
6 SHORT_DESC="Python REPL."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/prompt-toolkit/ptpython"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}/archive/$VERSION.tar.gz"
14 DEPENDS="python python-docopt python-jedi python-prompt-toolkit"
15 BUILD_DEPENDS="python-dev python-docopt python-jedi \
16 python-prompt-toolkit python-setuptools "
18 current_version()
19 {
20 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
21 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 python setup.py install --root=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs
34 }