wok view python-chardet/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents de3280120146
children 97eb61f05460
line source
1 # SliTaz package receipt.
3 PACKAGE="python-chardet"
4 VERSION="3.0.4"
5 CATEGORY="development"
6 MAINTAINER="maintainer@slitaz.org"
7 SHORT_DESC="Python module for character encoding auto-detection."
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://github.com/chardet/chardet"
11 SOURCE=chardet
12 TARBALL="$PACKAGE-$VERSION.tgz"
13 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
15 DEPENDS="python"
16 BUILD_DEPENDS="python-dev python-setuptools"
18 current_version()
19 {
20 wget -O - ${WGET_URL%/arch*}/releases 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 --optimize=1
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs
34 }