desktop/python2-chardet/PKGBUILD
Adrian Chaves Fernandez (Gallaecio) 57d1f1c61d CharDet 2.1.1
2012-10-02 07:17:00 +00:00

26 lines
763 B
Bash

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=python2-chardet
_pkgname=chardet
pkgver=2.1.1
pkgrel=1
pkgdesc="Python module for character encoding auto-detection"
arch=('any')
url="http://chardet.feedparser.org"
license=('LGPL')
depends=('python2' 'python-distribute')
provides=('python-chardet')
replaces=('python-chardet')
source=(http://pypi.python.org/packages/source/c/$_pkgname/$_pkgname-$pkgver.tar.gz)
md5sums=('295367fd210d20f3febda615a88e1ef0')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python2 setup.py install --root="${pkgdir}" --optimize=1
}