16 lines
488 B
Plaintext
Raw Normal View History

2011-04-10 23:25:59 +10:00
# Description: Python module for character encoding auto-detection.
# URL: https://github.com/erikrose/chardet
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: python-setuptools
2011-04-10 23:25:59 +10:00
2017-11-12 16:14:03 +11:00
name=python-chardet
2017-11-12 16:15:03 +11:00
version=3.0.4
2011-04-10 23:25:59 +10:00
release=1
2017-11-12 16:14:03 +11:00
source=(https://files.pythonhosted.org/packages/source/${name:7:1}/${name#*-}/${name#*-}-$version.tar.gz)
2011-04-10 23:25:59 +10:00
build() {
2017-11-12 16:14:03 +11:00
cd ${name#*-}-$version
/usr/bin/python setup.py build
2017-11-12 16:14:03 +11:00
/usr/bin/python setup.py install --prefix=/usr --root=$PKG --optimize=1
2011-04-10 23:25:59 +10:00
}