blob: 50801c0c24718f417ec0fe122f8012613cbd2f14 (
plain)
1 # Description: A Python HTML parser/tokenizer based on the WHATWG HTML5 spec.
2 # URL: https://github.com/html5lib/html5lib-python
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Danny Rawlins, crux at romster dot me
5 # Depends on: six
6
7 name=html5lib-python
8 version=0.99999
9 release=1
10 source=(https://github.com/html5lib/html5lib-python/archive/$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 /usr/bin/python setup.py build
15 /usr/bin/python setup.py install --prefix=/usr --root=$PKG --optimize=1
16 }
|