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
29 lines
913 B
Bash
29 lines
913 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
# Contributor: Julien Humbert <julroy67 at gmail dot com>
|
|
# Contributor: Angel 'angvp' Velasquez <angvp at archlinux dot com.ve>
|
|
|
|
pkgname=python2-sqlalchemy
|
|
_pkgname=sqlalchemy
|
|
_pkgname2=SQLAlchemy
|
|
pkgver=0.7.10
|
|
pkgrel=1
|
|
pkgdesc="Python SQL toolkit and Object Relational Mapper"
|
|
arch=('x86_64')
|
|
url="http://www.sqlalchemy.org/"
|
|
license=('MIT')
|
|
provides=('python-sqlalchemy')
|
|
replaces=('python-sqlalchemy')
|
|
conflicts=('python-sqlalchemy')
|
|
makedepends=('python' 'python-distribute')
|
|
source=(http://pypi.python.org/packages/source/S/$_pkgname2/$_pkgname2-$pkgver.tar.gz)
|
|
md5sums=('ecc0cd1cd906d17818a5f08fe13ae19e')
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgname2-$pkgver
|
|
python2 setup.py install --root=$pkgdir
|
|
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/license.txt
|
|
}
|