mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +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.2.0
|
|
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=('python2')
|
|
|
|
source=(http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-$pkgver.tar.gz)
|
|
md5sums=('ef1e78f7689ea61314f7bddebcfde88c')
|
|
|
|
build() {
|
|
cd $startdir/src/BeautifulSoup-$pkgver
|
|
python2 setup.py install --root=$startdir/pkg
|
|
}
|
|
|