17 lines
507 B
Plaintext
Raw Normal View History

2006-11-20 07:26:53 +10:00
# Description: Python HTML/XML Parser.
# URL: http://www.crummy.com/software/BeautifulSoup/
2008-03-26 13:45:31 +11:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: James Mills, prologic at shortcircuit dot net dot au
# Depends on: python
2006-11-14 09:01:22 +10:00
name=beautifulsoup
2011-07-10 03:37:16 +10:00
version=3.2.0
2006-11-14 09:01:22 +10:00
release=1
2011-07-10 03:37:16 +10:00
source=(http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-$version.tar.gz)
2006-11-14 09:01:22 +10:00
build() {
2008-06-23 20:15:35 +10:00
cd BeautifulSoup-$version
2008-03-07 03:32:19 +11:00
python setup.py install --root=$PKG
2011-07-10 03:37:16 +10:00
find $PKG -name '*.egg-info' | xargs rm -rf
2006-11-14 09:01:22 +10:00
}