19 lines
527 B
Plaintext
19 lines
527 B
Plaintext
|
# Description: A Python library that parses CSS3 Selectors and translates them to XPath 1.0.
|
||
|
# URL: http://pypi.python.org/pypi/cssselect
|
||
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
||
|
# Depends on: python3-setuptools
|
||
|
|
||
|
name=python3-cssselect
|
||
|
version=1.0.3
|
||
|
release=1
|
||
|
source=(https://files.pythonhosted.org/packages/source/${name:7:1}/${name#*-}/${name#*-}-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd ${name#*-}-$version
|
||
|
|
||
|
/usr/bin/python3 setup.py build
|
||
|
|
||
|
/usr/bin/python3 setup.py install \
|
||
|
--prefix=/usr --root=$PKG --optimize=1
|
||
|
}
|