blob: 77eed77ae577b3b6f9334599d835bef1ff79c23e (
plain)
1 # Description: Python HTML/XML Parser.
2 # URL: http://www.crummy.com/software/BeautifulSoup/
3 # Maintainer: James Mills prologic at shortcircuit dot net dot au
4 # Packager: James Mills prologic at shortcircuit dot net dot au
5 #
6 # Depends on: python
7
8 name=beautifulsoup
9 version=3.0.3
10 release=1
11 source=(http://www.crummy.com/software/BeautifulSoup/download/BeautifulSoup.tar.gz)
12
13 build() {
14 cd BeautifulSoup-$version
15 python setup.py install --root=$PKG
16 chown -R root:root $PKG
17 }
|