desktop/python2-chardet/PKGBUILD

23 lines
706 B
Bash
Raw Normal View History

2012-08-29 05:35:59 +08:00
# 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
2014-04-13 02:26:29 +08:00
pkgver=2.2.1
2012-08-29 05:35:59 +08:00
pkgrel=1
pkgdesc="Python module for character encoding auto-detection"
arch=('any')
url="http://chardet.feedparser.org"
license=('LGPL')
2012-10-02 15:17:00 +08:00
depends=('python2' 'python-distribute')
provides=('python-chardet')
replaces=('python-chardet')
2012-08-29 05:35:59 +08:00
source=(http://pypi.python.org/packages/source/c/$_pkgname/$_pkgname-$pkgver.tar.gz)
2014-04-13 02:26:29 +08:00
md5sums=('4a758402eaefd0331bdedc7ecb6f452c')
2012-08-29 05:35:59 +08:00
2014-04-13 02:26:29 +08:00
package() {
2012-08-29 05:35:59 +08:00
cd "${srcdir}/${_pkgname}-${pkgver}"
python2 setup.py install --root="${pkgdir}" --optimize=1
}