17 lines
516 B
Plaintext
17 lines
516 B
Plaintext
# Description: Python HTML/XML Parser.
|
|
# URL: http://www.crummy.com/software/BeautifulSoup/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
|
# Depends on: python
|
|
|
|
name=beautifulsoup
|
|
version=3.2.1
|
|
release=1
|
|
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
|
|
find $PKG -name '*.egg-info' | xargs rm -rf
|
|
}
|