2011-04-10 23:25:59 +10:00
|
|
|
# Description: Python module for character encoding auto-detection.
|
2013-03-28 01:11:04 +11:00
|
|
|
# URL: https://github.com/erikrose/chardet
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2017-02-05 16:32:37 +11:00
|
|
|
# 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
|
2015-06-04 23:06:43 +10:00
|
|
|
/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
|
|
|
}
|