diff options
Diffstat (limited to 'testing/py-beautifulsoup')
-rw-r--r-- | testing/py-beautifulsoup/APKBUILD | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/testing/py-beautifulsoup/APKBUILD b/testing/py-beautifulsoup/APKBUILD index fa8bb7c9e5..5cb0d4068d 100644 --- a/testing/py-beautifulsoup/APKBUILD +++ b/testing/py-beautifulsoup/APKBUILD @@ -8,15 +8,22 @@ pkgdesc="A Python HTML/XML parser designed for quick turnaround projects like sc url="http://www.crummy.com/software/BeautifulSoup/index.html" arch="noarch" license="BSD" -depends= +depends="" depends_dev="python-dev" makedepends="$depends_dev" install="" subpackages="" source="http://www.crummy.com/software/BeautifulSoup/download/3.x/$_pkgname-$pkgver.tar.gz" + _builddir="$srcdir"/$_pkgname-$pkgver +build() { + cd "$_builddir" + python setup.py build || return 1 +} + package() { cd "$_builddir" - python setup.py install --root=$pkgdir + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 } + md5sums="5ad1a8550a19bfc945baac23eb8293ed BeautifulSoup-3.2.1.tar.gz" |