25 lines
628 B
Plaintext
25 lines
628 B
Plaintext
|
# Tanım: Otomatik algılama karakteri kodlaması için Python modülü
|
|||
|
# URL: https://pypi.io/packages/source/c/chardet
|
|||
|
# Paketçi: Cihan_Alkan
|
|||
|
# Gerekler: python python3 python-setuptools python3-setuptools
|
|||
|
# Grup: kütüphane
|
|||
|
|
|||
|
isim=pychardet
|
|||
|
surum=3.0.4
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(https://pypi.io/packages/source/c/chardet/chardet-${surum}.tar.gz)
|
|||
|
|
|||
|
derle() {
|
|||
|
cp -a chardet-$surum{,-py3}
|
|||
|
|
|||
|
cd "$SRC"/chardet-$surum
|
|||
|
python setup.py build
|
|||
|
python setup.py install --root="$PKG" --optimize=1 --skip-build
|
|||
|
|
|||
|
cd "$SRC"/chardet-$surum-py3
|
|||
|
python3 setup.py build
|
|||
|
|
|||
|
python3 setup.py install --root="$PKG" --optimize=1 --skip-build
|
|||
|
}
|