mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
18 lines
508 B
Bash
18 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
|
||
|
}
|