This commit is contained in:
milisbir 2018-08-28 13:06:39 +03:00
parent be47a53409
commit 4d490ba67e
3 changed files with 33 additions and 1 deletions

View File

@ -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
}

View File

@ -1,7 +1,7 @@
# Tanım: Pypi python paketlerini yüklemek için kolay kurulum değiştirme # Tanım: Pypi python paketlerini yüklemek için kolay kurulum değiştirme
# URL: http://www.pip-installer.org # URL: http://www.pip-installer.org
# Paketçi: milisarge # Paketçi: milisarge
# Gerekler: python3 python3-setuptools # Gerekler: python3 python3-setuptools python3-webencodings python3-html5lib
# Grup: sistem # Grup: sistem
isim=python3-pip isim=python3-pip

View File

@ -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}
}