mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
26 lines
712 B
Bash
26 lines
712 B
Bash
|
#
|
||
|
# Chakra Apps for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=beautiful-soup
|
||
|
pkgver=3.0.8.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="A Python HTML/XML parser designed for quick turnaround projects like screen-scraping."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.crummy.com/software/BeautifulSoup/index.html"
|
||
|
license=('PSF')
|
||
|
depends=('python')
|
||
|
|
||
|
source=(http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-$pkgver.tar.gz)
|
||
|
md5sums=('d2f7b6b25bd26cd15e8b8a60ecc49c90')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/BeautifulSoup-$pkgver
|
||
|
python setup.py install --root=$startdir/pkg
|
||
|
}
|
||
|
|