python3
This commit is contained in:
parent
be47a53409
commit
4d490ba67e
|
@ -0,0 +1,17 @@
|
|||
# Tanım: WHATWG HTML5 standartlarına python ayrıştırıcı kütüphanesi
|
||||
# URL: https://github.com/html5lib
|
||||
# Paketçi: milisarge
|
||||
# Gerekler: python3-setuptools python3-webencodings
|
||||
# Grup: kütüphane
|
||||
|
||||
isim=python3-html5lib
|
||||
surum=1.0.1
|
||||
devir=1
|
||||
kaynak=(https://github.com/html5lib/html5lib-python/archive/$surum.tar.gz::python-html5lib-$surum.tar.gz)
|
||||
|
||||
derle() {
|
||||
cd "${SRC}"/html5lib-python-${surum}
|
||||
python3 setup.py build
|
||||
python3 setup.py install --root="${PKG}" --optimize=1 --skip-build
|
||||
install -Dm755 LICENSE "${PKG}"/usr/share/licenses/${isim}/LICENSE
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
# Tanım: Pypi python paketlerini yüklemek için kolay kurulum değiştirme
|
||||
# URL: http://www.pip-installer.org
|
||||
# Paketçi: milisarge
|
||||
# Gerekler: python3 python3-setuptools
|
||||
# Gerekler: python3 python3-setuptools python3-webencodings python3-html5lib
|
||||
# Grup: sistem
|
||||
|
||||
isim=python3-pip
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
# Tanım: WHATWG Encode standartı
|
||||
# URL: https://github.com/SimonSapin/python-webencodings
|
||||
# Paketçi: milisarge
|
||||
# Gerekler: python3 python3-setuptools
|
||||
# Grup: kütüphane
|
||||
|
||||
isim=python3-webencodings
|
||||
surum=0.5.1
|
||||
devir=1
|
||||
kaynak=(https://github.com/gsnedders/python-webencodings/archive/v$surum.tar.gz::$isim-$surum.tar.gz)
|
||||
|
||||
derle() {
|
||||
cd ${SRC}/python-webencodings-${surum}
|
||||
LANG="en_US.UTF-8" python3 setup.py install --root=${PKG}
|
||||
}
|
Loading…
Reference in New Issue