mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
17 lines
374 B
Plaintext
17 lines
374 B
Plaintext
# description : CSS Selectors for Python
|
|
# depends : python3-setuptools
|
|
|
|
name=python3-cssselect
|
|
version=1.2.0
|
|
release=1
|
|
source="$name-$version.tar.gz::https://github.com/scrapy/cssselect/archive/refs/tags/v${version}.tar.gz"
|
|
|
|
build() {
|
|
cd cssselect-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install \
|
|
--prefix=/usr --root=$PKG --optimize=1
|
|
}
|