mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 06:27:18 +08:00
new pkg: python{2,3}-beautifulsoup4
This commit is contained in:
parent
52ab735541
commit
4d5d67ce03
46
python-beautifulsoup4/PKGBUILD
Normal file
46
python-beautifulsoup4/PKGBUILD
Normal file
@ -0,0 +1,46 @@
|
||||
# Maintainer: Manuel 'UtG' <utg[dot]chakra.linux[at]gmail[dot]com>
|
||||
|
||||
pkgbase=python-beautifulsoup4
|
||||
pkgname=('python2-beautifulsoup4' 'python3-beautifulsoup4')
|
||||
pkgver=4.3.2
|
||||
pkgrel=1
|
||||
pkgdesc="A Python HTML/XML parser designed for quick turnaround projects like screen-scraping."
|
||||
arch=('x86_64')
|
||||
url="http://www.crummy.com/software/BeautifulSoup/index.html"
|
||||
license=('PSF')
|
||||
makedepends=('python2-setuptools' 'python3-setuptools')
|
||||
source=("http://www.crummy.com/software/BeautifulSoup/bs4/download/${pkgver%.*}/${pkgbase#*-}-${pkgver}.tar.gz")
|
||||
md5sums=('b8d157a204d56512a4cc196e53e7d8ee')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}"
|
||||
cp -a beautifulsoup4-${pkgver}{,-python2}
|
||||
|
||||
# Build python 3 module
|
||||
cd "${srcdir}/beautifulsoup4-${pkgver}"
|
||||
python3 setup.py build
|
||||
|
||||
# Build python 2 module
|
||||
cd "${srcdir}/beautifulsoup4-${pkgver}-python2"
|
||||
python2 setup.py build
|
||||
}
|
||||
|
||||
package_python2-beautifulsoup4() {
|
||||
optdepends=('python2-chardet: universal encoding detector'
|
||||
'python2-lxml: pythonic binding for the libxml2 and libxslt libraries')
|
||||
|
||||
cd "${srcdir}/beautifulsoup4-${pkgver}-python2"
|
||||
python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
|
||||
|
||||
rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/bs4/tests
|
||||
}
|
||||
|
||||
package_python3-beautifulsoup4() {
|
||||
optdepends=('python3-chardet: universal encoding detector'
|
||||
'python3-lxml: pythonic binding for the libxml2 and libxslt libraries')
|
||||
|
||||
cd "${srcdir}/beautifulsoup4-${pkgver}"
|
||||
python3 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
|
||||
|
||||
rm -rf ${pkgdir}/usr/lib/python3.3/site-packages/bs4/{__pycache__,tests,builder/__pycache__}
|
||||
}
|
Loading…
Reference in New Issue
Block a user