mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 12:57:15 +08:00
24 lines
709 B
Bash
24 lines
709 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.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=('python2')
|
|
source=("http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-$pkgver.tar.gz")
|
|
md5sums=('5ad1a8550a19bfc945baac23eb8293ed')
|
|
|
|
build() {
|
|
cd "${srcdir}/BeautifulSoup-${pkgver}"
|
|
python2 setup.py install --root="${pkgdir}"
|
|
}
|