mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:37:14 +08:00
23 lines
700 B
Bash
23 lines
700 B
Bash
#
|
|
# Platform Packages for Chakra, part of www.chakra-project.org
|
|
#
|
|
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributors: A Boersma (abveritas) <abveritas@chakra-project.org>
|
|
|
|
pkgname=mysql-python
|
|
pkgver=1.2.4
|
|
pkgrel=1
|
|
pkgdesc="MySQL support for Python"
|
|
arch=("i686" "x86_64")
|
|
url="http://sourceforge.net/projects/mysql-python"
|
|
license=('GPL2')
|
|
depends=('python2' 'libmariadbclient')
|
|
makedepends=('mariadb' 'python2-distribute')
|
|
source=("http://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-${pkgver}.zip")
|
|
sha1sums=('9af66e09713a79a08a312a7da87f0f0dccfc0a91')
|
|
|
|
package() {
|
|
cd ${srcdir}/MySQL-python-${pkgver}
|
|
python setup.py install --root=${pkgdir} --optimize=1
|
|
}
|