16 lines
461 B
Plaintext
16 lines
461 B
Plaintext
# Description: Python HTML/XML Parser.
|
|
# URL: http://www.crummy.com/software/BeautifulSoup/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
|
# Depends on: setuptools
|
|
|
|
name=beautifulsoup
|
|
version=3.2.1
|
|
release=2
|
|
source=(http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-$version.tar.gz)
|
|
|
|
build() {
|
|
cd BeautifulSoup-$version
|
|
/usr/bin/python setup.py install --root=$PKG
|
|
}
|