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
|
2011-04-10 23:25:59 +10:00
|
|
|
# Packager: Marcin Karpezo, sirmacik at crux dot org dot pl
|
2017-02-05 16:32:37 +11:00
|
|
|
# Depends on: python-setuptools
|
2011-04-10 23:25:59 +10:00
|
|
|
|
2015-06-04 23:06:43 +10:00
|
|
|
name=chardet
|
|
|
|
version=2.3.0
|
2011-04-10 23:25:59 +10:00
|
|
|
release=1
|
2015-06-04 23:06:43 +10:00
|
|
|
source=(https://pypi.python.org/packages/source/c/$name/$name-$version.tar.gz)
|
2011-04-10 23:25:59 +10:00
|
|
|
|
|
|
|
build() {
|
2015-06-04 23:06:43 +10:00
|
|
|
cd $name-$version
|
|
|
|
/usr/bin/python setup.py build
|
2014-01-27 18:53:42 +11:00
|
|
|
/usr/bin/python setup.py install --root=$PKG
|
2011-04-10 23:25:59 +10:00
|
|
|
}
|