16 lines
488 B
Plaintext
16 lines
488 B
Plaintext
# Description: Python module for character encoding auto-detection.
|
|
# URL: https://github.com/erikrose/chardet
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: python-setuptools
|
|
|
|
name=python-chardet
|
|
version=3.0.4
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${name:7:1}/${name#*-}/${name#*-}-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
/usr/bin/python setup.py build
|
|
/usr/bin/python setup.py install --prefix=/usr --root=$PKG --optimize=1
|
|
}
|