57 lines
1.4 KiB
Text
57 lines
1.4 KiB
Text
# Template file for 'python-chardet'
|
|
pkgname=python-chardet
|
|
version=2.3.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="chardet-${version}"
|
|
build_style="python-module"
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
|
depends="python"
|
|
pycompile_module="chardet"
|
|
short_desc="Universal encoding detector for Python 2 and 3 (Python2)"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/chardet/chardet"
|
|
license="LGPL-2.1"
|
|
distfiles="${PYPI_SITE}/c/chardet/chardet-${version}.tar.gz"
|
|
checksum=e53e38b3a4afe6d1132de62b7400a4ac363452dc5dfcf8d88e8e0cce663c68aa
|
|
|
|
post_extract() {
|
|
cp -a ${wrksrc} /tmp/python2.7-build
|
|
cp -a ${wrksrc} /tmp/python3.4-build
|
|
mv /tmp/python{2.7,3.4}-build ${wrksrc}
|
|
}
|
|
|
|
pre_build() {
|
|
cd ${wrksrc}/python3.4-build
|
|
sed -i 's,chardetect ,chardetect3 ,' setup.py
|
|
sed -i 's,#!/usr/bin/env python,&3.4,' chardet/chardetect.py
|
|
}
|
|
|
|
do_build() {
|
|
cd ${wrksrc}/python2.7-build
|
|
python setup.py build
|
|
|
|
cd ${wrksrc}/python3.4-build
|
|
python3.4 setup.py build
|
|
}
|
|
|
|
do_install() {
|
|
cd ${wrksrc}/python2.7-build
|
|
python setup.py install --root=${DESTDIR}
|
|
|
|
cd ${wrksrc}/python3.4-build
|
|
python3.4 setup.py install --root=${DESTDIR}
|
|
}
|
|
|
|
python3.4-chardet_package() {
|
|
noarch=yes
|
|
depends="python3.4"
|
|
pycompile_version="3.4"
|
|
pycompile_module="chardet"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/bin/chardetect3
|
|
vmove usr/lib/python3.4
|
|
}
|
|
}
|