1
0
forked from ports/contrib

beautifulsoup: fix a dumb error

This commit is contained in:
Danny Rawlins 2008-06-23 20:15:35 +10:00
parent c8f5f69d18
commit 4bd7a59b82
2 changed files with 3 additions and 4 deletions

View File

@ -1 +1 @@
ccbf5ee2199b115935a3ca9a2674f44e BeautifulSoup.tar.gz
83e5227c4cc11a0eabbdc4c6b481eb7d BeautifulSoup-3.0.7.tar.gz

View File

@ -7,11 +7,10 @@
name=beautifulsoup
version=3.0.7
release=1
source=(http://www.crummy.com/software/BeautifulSoup/download/BeautifulSoup.tar.gz)
source=(http://www.crummy.com/software/BeautifulSoup/download/BeautifulSoup-$version.tar.gz)
build() {
cd BeautifulSoup-3.0.5
sed -i -e "s/^__version__ = \"3.0.5\"$/__version__ = \"$version\"/" BeautifulSoup.py
cd BeautifulSoup-$version
python setup.py install --root=$PKG
}