PKGBUILDs/community/python-chardet/PKGBUILD

18 lines
508 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $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
}