mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
14 lines
401 B
Plaintext
Executable File
14 lines
401 B
Plaintext
Executable File
# description : Encoding and language detection alternative to chardet
|
|
# depends : python3-setuptools python3-pytest
|
|
|
|
name=python3-charset-normalizer
|
|
version=3.3.2
|
|
release=1
|
|
source="https://github.com/Ousret/charset_normalizer/archive/$version/$name-$version.tar.gz"
|
|
|
|
build() {
|
|
cd charset_normalizer-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG --optimize=1 --skip-build
|
|
}
|