mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
26 lines
822 B
Bash
26 lines
822 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=python-sqlalchemy
|
|
_pkgname=sqlalchemy
|
|
_pkgname2=SQLAlchemy
|
|
pkgver=0.7.2
|
|
pkgrel=1
|
|
pkgdesc="Python SQL toolkit and Object Relational Mapper"
|
|
arch=(i686 x86_64)
|
|
url="http://www.sqlalchemy.org/"
|
|
license=('MIT')
|
|
makedepends=('python' 'python-distribute')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$_pkgname/$_pkgname2-$pkgver.tar.gz)
|
|
md5sums=('234494800f2a0ac3ad7c06e0ffa4641e')
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgname2-$pkgver
|
|
python setup.py install --root=$pkgdir
|
|
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/license.txt
|
|
}
|