blob: eae7121f3481650c47878df0127e1583bc69a020 (
plain)
1 # Description: Python module for character encoding auto-detection.
2 # URL: https://github.com/erikrose/chardet
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-build python3-installer
5
6 name=python3-chardet
7 version=5.1.0
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz)
10
11 build() {
12 cd chardet-$version
13
14 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
15 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
16 }
|