blob: 96ae4c0ec5c4667e6b7eeaa1cf8cc2e067d2b08e (
plain)
1 # Description: Python module for character encoding auto-detection.
2 # URL: https://github.com/erikrose/chardet
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python-setuptools
5
6 name=python-chardet
7 version=3.0.4
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/${name:7:1}/${name#*-}/${name#*-}-$version.tar.gz)
10
11 build() {
12 cd ${name#*-}-$version
13 /usr/bin/python setup.py build
14 /usr/bin/python setup.py install --prefix=/usr --root=$PKG --optimize=1
15 }
|