blob: 314b9f61c4f09d0a6254b8e6a98583e69fdedaaa (
plain)
1 # Description: A pythonic binding for the libxml2 and libxslt libraries.
2 # URL: http://lxml.de/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-beautifulsoup4 python3-cssselect python3-cython python3-html5lib libxslt
5
6 name=python3-lxml
7 version=4.4.1
8 release=1
9 source=(https://lxml.de/files/${name#*-}-$version.tgz)
10
11 build() {
12 cd ${name#*-}-$version
13
14 /usr/bin/python3 setup.py build
15
16 /usr/bin/python3 setup.py install \
17 --prefix=/usr --root=$PKG --optimize=1
18 }
|