# This file is part of BlackArch Linux ( https://www.blackarch.org/ ). # See COPYING for license details. pkgname=python2-chardet _pkgname=chardet pkgver=4.0.0 pkgrel=3 pkgdesc='Universal encoding detector for Python 2 and 3.' url='https://pypi.org/project/chardet/#files' arch=('any') license=('LGPL') depends=('python2') makedepends=('python2-setuptools') source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/$_pkgname/$_pkgname-$pkgver.tar.gz") sha512sums=('ebd7f420e1094445270db993f6373ffe7370419e002b0bb13299dc6c9b0f7c4e77b0f44f871fba6371e6869e7c86728514367db377e3137487a3acf50cb81e96') build() { cd "$_pkgname-$pkgver" python2 setup.py build } package() { cd "$_pkgname-$pkgver" python2 setup.py install --root="$pkgdir" --prefix=/usr -O1 --skip-build mv "$pkgdir/usr/bin/chardetect" "$pkgdir/usr/bin/chardetect2" }