blob: 2f6c2ab041e4de8d10023cb807a8a702c5f74462 (
plain)
1 # Description: A pythonic binding for the libxml2 and libxslt libraries.
2 # URL: https://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 _name=${name#*-}
8 version=4.9.2
9 release=1
10 source=(https://github.com/$_name/$_name/archive/refs/tags/$_name-$version.tar.gz)
11
12 build() {
13 cd $_name-$_name-$version
14
15 /usr/bin/python3 setup.py build
16
17 /usr/bin/python3 setup.py install \
18 --prefix=/usr --root=$PKG --optimize=1
19 }
|