forked from ports/contrib
17 lines
476 B
Plaintext
17 lines
476 B
Plaintext
|
# Description: Python HTML/XML Parser.
|
||
|
# URL: http://www.crummy.com/software/BeautifulSoup/
|
||
|
# Maintainer: James Mills prologic at shortcircuit dot net dot au
|
||
|
# Packager: James Mills prologic at shortcircuit dot net dot au
|
||
|
# Depends on: python
|
||
|
|
||
|
name=beautifulsoup
|
||
|
version=3.0.3
|
||
|
release=1
|
||
|
source=(http://www.crummy.com/software/BeautifulSoup/download/BeautifulSoup.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd BeautifulSoup-$version
|
||
|
python setup.py install --root=$PKG
|
||
|
chown -R root:root $PKG
|
||
|
}
|