diff options
author | Michael Hanson <hansonorders@verizon.net> | 2010-12-03 03:28:18 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2010-12-03 03:28:18 (GMT) |
commit | b1b6af43c00e8d29e0ac8e0925ea3f2815538733 (patch) | |
tree | c282cf0ba00b2722577e1451d72fd5413e426cc7 /abs/extra | |
parent | b9a0dbfc6dc59c8b54435d4d23c44069f81a6427 (diff) | |
download | linhes_pkgbuild-b1b6af43c00e8d29e0ac8e0925ea3f2815538733.zip linhes_pkgbuild-b1b6af43c00e8d29e0ac8e0925ea3f2815538733.tar.gz linhes_pkgbuild-b1b6af43c00e8d29e0ac8e0925ea3f2815538733.tar.bz2 |
python-chardet: inital include for deluge
Diffstat (limited to 'abs/extra')
-rw-r--r-- | abs/extra/community/python-chardet/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/extra/community/python-chardet/PKGBUILD b/abs/extra/community/python-chardet/PKGBUILD new file mode 100644 index 0000000..6ed1086 --- /dev/null +++ b/abs/extra/community/python-chardet/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 87872 2010-08-18 15:26:20Z ibiru $ +# Maintainer : Ionut Biru <ibiru@archlinux.org> +# Contributor: William Rea <sillywilly@gmail.com> +pkgname=python-chardet +_pkgnamebase=python2-chardet +pkgver=2.0.1 +pkgrel=2 +pkgdesc="Python module for character encoding auto-detection" +arch=('any') +url="http://chardet.feedparser.org" +license=('LGPL') +depends=('python2') +source=(http://chardet.feedparser.org/download/${_pkgnamebase}-${pkgver}.tgz) +sha256sums=('56fa0c37189b0a5f082d064dec59d69a044aaa3eeb7acb9b3081e2ba306deaa4') + +build() { + cd "${srcdir}/${_pkgnamebase}-${pkgver}" + python2 setup.py install --root="${pkgdir}" --optimize=1 +} + |