blob: 3434bab000ed1a230b9bae6da2663a8c0b104404 (
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.4
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 }
|