PKGBUILDs/community/python-chardet/PKGBUILD
2009-10-09 21:15:33 -05:00

17 lines
508 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=python-chardet
pkgver=1.0.1
pkgrel=2
pkgdesc="Python module for character encoding auto-detection"
arch=('i686' 'x86_64')
url="http://chardet.feedparser.org"
license=('LGPL')
depends=('python')
source=(http://chardet.feedparser.org/download/chardet-$pkgver.tgz)
md5sums=('f8c510a6fac300fe0ac9a0c24a76a7ba')
build() {
cd $startdir/src/chardet-$pkgver
python setup.py install --root=$startdir/pkg
}