mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
387dedad55
beautiful-soup renamed and updated to python2-beautifulsoup python-sqlalchemy renamed/updated to python2-sqlalchemy python-pycountry imported from testing and renamed/updated to python2-pycountry
26 lines
711 B
Bash
26 lines
711 B
Bash
#
|
|
# Chakra Apps for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=python2-beautifulsoup
|
|
pkgver=3.2.1
|
|
pkgrel=1
|
|
pkgdesc="A Python HTML/XML parser designed for quick turnaround projects like screen-scraping."
|
|
arch=('any')
|
|
url="http://www.crummy.com/software/BeautifulSoup/index.html"
|
|
license=('PSF')
|
|
depends=('python2')
|
|
replaces=('beautiful-soup')
|
|
provides=('beautiful-soup')
|
|
conflicts=('beautiful-soup')
|
|
|
|
source=(http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-$pkgver.tar.gz)
|
|
md5sums=('5ad1a8550a19bfc945baac23eb8293ed')
|
|
|
|
build() {
|
|
cd $startdir/src/BeautifulSoup-$pkgver
|
|
python2 setup.py install --root=${pkgdir} -O1
|
|
}
|
|
|