blob: 6459d1bcd7a36bef4a71991ac893fa06eb826192 (
plain)
1 # Description: Python HTML/XML Parser.
2 # URL: https://www.crummy.com/software/BeautifulSoup/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-chardet python3-soupsieve
5
6 name=python3-beautifulsoup4
7 version=4.11.1
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/b/beautifulsoup4/beautifulsoup4-$version.tar.gz)
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 }
|